This repository was archived by the owner on Mar 17, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 8 files changed +7844
-4578
lines changed
Expand file tree Collapse file tree 8 files changed +7844
-4578
lines changed Original file line number Diff line number Diff line change 55 {
66 "useBuiltIns" : true ,
77 "targets" : {
8- "node" : 4.3
8+ "node" : " 4.8 "
99 },
1010 "exclude" : [
1111 " transform-async-to-generator" ,
3232 ]
3333 }
3434 }
35- }
35+ }
Original file line number Diff line number Diff line change 11yarn.lock - diff
22* text =auto
3- bin /* eol =lf
3+ bin /* eol =lf
4+ package-lock.json - diff
Original file line number Diff line number Diff line change 1+ <!--
121. Check the version of package you are using. If it's not the newest version, update and try again (see changelog while updating!).
232. If the issue is still there, write a minimal project showing the problem and expected output.
343. Link to the project and mention Node version and OS in your report.
45
56**IMPORTANT! You should use [Stack Overflow](https://stackoverflow.com/) for support related questions.**
7+ -->
Original file line number Diff line number Diff line change 11sudo : false
2+ dist : trusty
23language : node_js
34branches :
45 only :
56 - master
6- matrix :
7+ jobs :
78 fast_finish : true
9+ allow_failures :
10+ - env : WEBPACK_VERSION=canary
811 include :
9- - os : linux
10- node_js : ' 7'
11- env : WEBPACK_VERSION="2.2.0" JOB_PART=lint
12- - os : linux
13- node_js : ' 4.3'
14- env : WEBPACK_VERSION="2.2.0" JOB_PART=test
15- - os : linux
16- node_js : ' 6'
17- env : WEBPACK_VERSION="2.2.0" JOB_PART=test
18- - os : linux
19- node_js : ' 7'
20- env : WEBPACK_VERSION="2.2.0" JOB_PART=coverage
12+ - &test-latest
13+ stage : Webpack latest
14+ node_js : 6
15+ env : WEBPACK_VERSION=latest JOB_PART=test
16+ script : npm run travis:$JOB_PART
17+ - << : *test-latest
18+ node_js : 4.8
19+ env : WEBPACK_VERSION=latest JOB_PART=test
20+ script : npm run travis:$JOB_PART
21+ - << : *test-latest
22+ node_js : 8
23+ env : WEBPACK_VERSION=latest JOB_PART=lint
24+ script : npm run travis:$JOB_PART
25+ - << : *test-latest
26+ node_js : 8
27+ env : WEBPACK_VERSION=latest JOB_PART=coverage
28+ script : npm run travis:$JOB_PART
29+ after_success : ' bash <(curl -s https://codecov.io/bash)'
30+ - stage : Webpack canary
31+ before_script : npm i --no-save git://github.com/webpack/webpack.git#master
32+ script : npm run travis:$JOB_PART
33+ node_js : 8
34+ env : WEBPACK_VERSION=canary JOB_PART=test
2135before_install :
36+ - ' if [[ `npm -v` != 5* ]]; then npm i -g npm@^5.0.0; fi'
2237 - nvm --version
2338 - node --version
39+ - npm --version
2440before_script :
2541 - |-
2642 if [ "$WEBPACK_VERSION" ]; then
27- yarn add webpack@^ $WEBPACK_VERSION
43+ npm i --no-save webpack@$WEBPACK_VERSION
2844 fi
2945script :
30- - ' yarn run travis:$JOB_PART'
46+ - ' npm run travis:$JOB_PART'
3147after_success :
3248 - ' bash <(curl -s https://codecov.io/bash)'
Original file line number Diff line number Diff line change 1+ branches :
2+ only :
3+ - master
4+ init :
5+ - git config --global core.autocrlf input
6+ environment :
7+ matrix :
8+ - nodejs_version : ' 8'
9+ webpack_version : latest
10+ job_part : test
11+ - nodejs_version : ' 6'
12+ webpack_version : latest
13+ job_part : test
14+ - nodejs_version : ' 4.8'
15+ webpack_version : latest
16+ job_part : test
17+ build : ' off'
18+ matrix :
19+ fast_finish : true
20+ install :
21+ - ps : Install-Product node $env:nodejs_version x64
22+ - npm i -g npm@latest
23+ - npm install
24+ before_test :
25+ - cmd : npm install webpack@%webpack_version%
26+ test_script :
27+ - node --version
28+ - npm --version
29+ - cmd : npm run appveyor:%job_part%
You can’t perform that action at this time.
0 commit comments