๐Ÿ“ฆ antongolub / enw

๐Ÿ“„ .travis.yml ยท 20 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20language: node_js
node_js:
  - '0.10'
before_install:
  - 'npm install -g istanbul'
  - 'npm install -g karma'
  - 'npm install -g karma-cli'
  - 'npm install -g grunt'
  - 'npm install -g grunt-cli'
before_script:
  - 'npm install -g grunt-cli'
  - 'npm install -g bower'
  - 'bower install -f'
after_script:
  - "node node_modules/requirejs/bin/r.js -o client/src/build.js"
  - "node node_modules/requirejs/bin/r.js -o client/src/build-cdn.js"
  - "node node_modules/requirejs/bin/r.js -o client/src/build-singlefile.js"
  - 'grunt'