DSLO commited on
Commit
f6f1243
·
verified ·
1 Parent(s): 155c5ef

Update cli.js

Browse files
Files changed (1) hide show
  1. cli.js +7 -0
cli.js CHANGED
@@ -12,6 +12,13 @@ if (!input) {
12
  process.exit(1);
13
  }
14
 
 
 
 
 
 
 
 
15
  // Process the signal deterministically
16
  const result = processSignal(input);
17
 
 
12
  process.exit(1);
13
  }
14
 
15
+ if (input === "--manifest") {
16
+ const manifest = require('./manifest.json');
17
+ console.log(JSON.stringify(manifest, null, 2));
18
+ process.exit(0);
19
+ }
20
+
21
+
22
  // Process the signal deterministically
23
  const result = processSignal(input);
24