Skip to content
This repository was archived by the owner on Oct 27, 2020. It is now read-only.

Commit 5b0cffa

Browse files
michael-ciniawskyjoshwiens
authored andcommitted
chore(package): update webpack-defaults && devDependencies (#7)
1 parent 9ca733c commit 5b0cffa

File tree

7 files changed

+5860
-5211
lines changed

7 files changed

+5860
-5211
lines changed

.babelrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@
3232
]
3333
}
3434
}
35-
}
35+
}

.gitattributes

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
yarn.lock -diff
22
* text=auto
3-
bin/* eol=lf
3+
bin/* eol=lf
4+
package-lock.json -diff

.github/ISSUE_TEMPLATE.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1+
<!--
12
1. Check the version of package you are using. If it's not the newest version, update and try again (see changelog while updating!).
23
2. If the issue is still there, write a minimal project showing the problem and expected output.
34
3. 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+
-->

.travis.yml

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,26 +7,28 @@ matrix:
77
fast_finish: true
88
include:
99
- os: linux
10-
node_js: '7'
11-
env: WEBPACK_VERSION="2.2.0" JOB_PART=lint
10+
node_js: '8'
11+
env: WEBPACK_VERSION="2.6.0" JOB_PART=lint
1212
- os: linux
1313
node_js: '4.3'
14-
env: WEBPACK_VERSION="2.2.0" JOB_PART=test
14+
env: WEBPACK_VERSION="2.6.0" JOB_PART=test
1515
- os: linux
1616
node_js: '6'
17-
env: WEBPACK_VERSION="2.2.0" JOB_PART=test
17+
env: WEBPACK_VERSION="2.6.0" JOB_PART=test
1818
- os: linux
19-
node_js: '7'
20-
env: WEBPACK_VERSION="2.2.0" JOB_PART=coverage
19+
node_js: '8'
20+
env: WEBPACK_VERSION="2.6.0" JOB_PART=coverage
2121
before_install:
22+
- 'if [[ `npm -v` != 5* ]]; then npm i -g npm@^5.0.0; fi'
2223
- nvm --version
2324
- node --version
25+
- npm --version
2426
before_script:
2527
- |-
2628
if [ "$WEBPACK_VERSION" ]; then
27-
yarn add webpack@^$WEBPACK_VERSION
29+
npm i --no-save webpack@^$WEBPACK_VERSION
2830
fi
2931
script:
30-
- 'yarn run travis:$JOB_PART'
32+
- 'npm run travis:$JOB_PART'
3133
after_success:
3234
- 'bash <(curl -s https://codecov.io/bash)'

0 commit comments

Comments
 (0)