We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c69cb2a commit 64e6dc0Copy full SHA for 64e6dc0
2 files changed
README.md
@@ -12,7 +12,7 @@
12
13
14
```
15
- npm run build -- --version 17.1 --ignite-ui http://localhost/ig_ui17.1
+ npm run build -- --ignite-version 17.1 --ignite-ui http://localhost/ig_ui17.1
16
17
18
3. The built samples will be located under the ./dist folder.
gulpfile.js
@@ -4,7 +4,7 @@ var gulp = require("gulp"),
4
createFiddleFiles = require("./build/createFiddleFiles.js");
5
6
var argv = require('minimist')(process.argv.slice(2));
7
-var version = argv.version; //should be passed as --version ${TRAVIS_BRANCH}
+var version = argv["ignite-version"]; //should be passed as --ignite-version ${BRANCH}
8
9
var dist = "./dist",
10
copySrc = [
0 commit comments