Skip to content

Commit bfcc594

Browse files
elodszoposTheLarkInn
authored andcommitted
adding yarn lock file and removing it from git ignore (webpack#3648)
* adding yarn lock file and removing it from git ignore * travis will now run yarn by default that it sees the lock file
1 parent 7d17746 commit bfcc594

File tree

4 files changed

+4070
-3
lines changed

4 files changed

+4070
-3
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,4 @@
99
.DS_Store
1010
*.log
1111
.idea
12-
yarn.lock
1312
.vscode

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ matrix:
3636
script: npm run travis:$JOB_PART
3737

3838
before_install: if [[ `npm -v` != 3* ]]; then npm i -g npm@3; fi
39-
install:
39+
before_script:
4040
- bash ./ci/travis-install.sh
4141
after_success:
4242
- cat ./coverage/lcov.info | node_modules/.bin/coveralls --verbose

ci/travis-install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
22
set -ev
33

4-
npm install yarn -g && yarn install && yarn link || true && yarn link webpack;
4+
yarn link || true && yarn link webpack;
55

0 commit comments

Comments
 (0)