Update cli.js
Browse files
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 |
|