shin-engine 1.0.8 → 1.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/ee.js +7 -3
- package/package.json +1 -1
package/bin/ee.js
CHANGED
|
@@ -143,8 +143,9 @@ async function main() {
|
|
|
143
143
|
|
|
144
144
|
if (!cmd) {
|
|
145
145
|
log("shin-engine v" + VERSION);
|
|
146
|
-
log("
|
|
147
|
-
log("
|
|
146
|
+
log("");
|
|
147
|
+
log("Install: npm install -g shin-engine");
|
|
148
|
+
log("Usage: shin --help");
|
|
148
149
|
return;
|
|
149
150
|
}
|
|
150
151
|
|
|
@@ -201,7 +202,10 @@ async function main() {
|
|
|
201
202
|
}
|
|
202
203
|
|
|
203
204
|
if (cmd === "--help" || cmd === "-h") {
|
|
204
|
-
log("
|
|
205
|
+
log("SHIN - Engineering Experience Engine");
|
|
206
|
+
log("");
|
|
207
|
+
log("Install:");
|
|
208
|
+
log(" npm install -g shin-engine");
|
|
205
209
|
log("");
|
|
206
210
|
log("Commands:");
|
|
207
211
|
log(" shin start Start the SHIN backend (first run downloads + installs)");
|