File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22
33'use strict' ;
44
5- import pkg from '../package.json' assert { type : 'json ' } ;
5+ import pkg from '../package.json' with { type : 'json' } ;
66import { program } from 'commander' ;
77import TerminalKit from 'terminal-kit' ;
88const { terminal } = TerminalKit ;
Original file line number Diff line number Diff line change 22
33'use strict' ;
44
5- import pkg from '../package.json' assert { type : 'json ' } ;
5+ import pkg from '../package.json' with { type : 'json' } ;
66import { program } from 'commander' ;
77import TerminalKit from 'terminal-kit' ;
88const { terminal } = TerminalKit ;
Original file line number Diff line number Diff line change 22
33'use strict'
44
5- import pkg from '../package.json' assert { type : 'json ' } ;
5+ import pkg from '../package.json' with { type : 'json' } ;
66import { program } from 'commander' ;
77
88program
9- . version ( pkg . version )
9+ . version ( pkg . version )
1010
1111program
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' )
1414
1515program . parse ( process . argv )
You can’t perform that action at this time.
0 commit comments