File tree 3 files changed +6
-6
lines changed 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 2
2
3
3
'use strict' ;
4
4
5
- import pkg from '../package.json' assert { type : 'json ' } ;
5
+ import pkg from '../package.json' with { type : 'json' } ;
6
6
import { program } from 'commander' ;
7
7
import TerminalKit from 'terminal-kit' ;
8
8
const { terminal } = TerminalKit ;
Original file line number Diff line number Diff line change 2
2
3
3
'use strict' ;
4
4
5
- import pkg from '../package.json' assert { type : 'json ' } ;
5
+ import pkg from '../package.json' with { type : 'json' } ;
6
6
import { program } from 'commander' ;
7
7
import TerminalKit from 'terminal-kit' ;
8
8
const { terminal } = TerminalKit ;
Original file line number Diff line number Diff line change 2
2
3
3
'use strict'
4
4
5
- import pkg from '../package.json' assert { type : 'json ' } ;
5
+ import pkg from '../package.json' with { type : 'json' } ;
6
6
import { program } from 'commander' ;
7
7
8
8
program
9
- . version ( pkg . version )
9
+ . version ( pkg . version )
10
10
11
11
program
12
- . command ( 'info [options]' , 'get information about compatable Meross smart device' )
13
- . command ( 'setup [options]' , 'setup compatable Meross smart device' )
12
+ . command ( 'info [options]' , 'get information about compatable Meross smart device' )
13
+ . command ( 'setup [options]' , 'setup compatable Meross smart device' )
14
14
15
15
program . parse ( process . argv )
You can’t perform that action at this time.
0 commit comments