We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f94c5b commit cd3dfd7Copy full SHA for cd3dfd7
core/cb.project/node/index.js
@@ -11,6 +11,11 @@ module.exports = {
11
name: "npm start",
12
id: "run",
13
script: path.resolve(__dirname, "run.sh")
14
+ },
15
+ {
16
+ name: "npm install",
17
+ id: "install",
18
+ script: path.resolve(__dirname, "install.sh")
19
}
20
],
21
core/cb.project/node/install.sh
@@ -0,0 +1,6 @@
1
+#!/bin/bash
2
+
3
+WORKSPACE=$1
4
5
+# Install dependencies with npm
6
+npm install
0 commit comments