prjct-cli 0.11.3 → 0.11.4
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/prjct +4 -0
- package/package.json +1 -1
package/bin/prjct
CHANGED
|
@@ -15,6 +15,10 @@ if (args[0] === 'dev') {
|
|
|
15
15
|
// Launch prjct dev environment
|
|
16
16
|
require('./dev.js')
|
|
17
17
|
process.exitCode = 0
|
|
18
|
+
} else if (args[0] === 'web' || args[0] === 'serve') {
|
|
19
|
+
// Launch prjct web server
|
|
20
|
+
require('./serve.js')
|
|
21
|
+
process.exitCode = 0
|
|
18
22
|
} else {
|
|
19
23
|
|
|
20
24
|
// Ensure setup has run for this version
|