Skip to content

Commit

Permalink
package
Browse files Browse the repository at this point in the history
  • Loading branch information
lacymorrow committed Aug 17, 2023
1 parent b1b64a2 commit 6ab4018
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,14 @@ if ( args.has( '--version' ) || args.has( '-v' ) ) {

console.log( `CrossOver ${version}` )

// CLI arguments
if ( args.length > 0 ) {

console.log( 'Arguments:', args )

}

// Development mode
if ( args.has( '--debug' ) || args.has( '-d' ) ) {

console.log( '<Development Mode>' )
Expand All @@ -27,6 +29,7 @@ if ( args.has( '--debug' ) || args.has( '-d' ) ) {

}

// Force the app to reset preferences
if ( args.has( '--reset' ) || args.has( '-r' ) ) {

console.log( '<Reset App>' )
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
},
"license": "CC-BY-NC-SA-4.0",
"engines": {
"node": "12 || 14 || 16 || 18"
"node": "16"
},
"scripts": {
"install": "yarn css",
Expand Down

0 comments on commit 6ab4018

Please sign in to comment.