-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: move to yarn and update dependencies
- Loading branch information
Showing
10 changed files
with
7,557 additions
and
10,808 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,24 @@ | ||
sudo: false | ||
language: node_js | ||
node_js: | ||
- '6' | ||
- '8.9.4' | ||
cache: | ||
directories: | ||
- node_modules | ||
yarn: true | ||
directories: | ||
- node_modules | ||
notifications: | ||
email: false | ||
email: false | ||
branches: | ||
only: | ||
- master | ||
except: | ||
- /^v\d+\.\d+\.\d+$/ | ||
before_script: | ||
- npm run ci:before | ||
script: | ||
- npm run ci:script | ||
after_success: | ||
- npm run ci:after | ||
only: | ||
- master | ||
except: | ||
- /^v\d+\.\d+\.\d+$/ | ||
|
||
before_install: | ||
- curl -o- -L https://yarnpkg.com/install.sh | bash | ||
- export PATH=$HOME/.yarn/bin:$PATH | ||
|
||
install: yarn install --frozen-lockfile | ||
|
||
script: yarn ci:script | ||
after_success: yarn ci:after |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"lerna": "2.2.0", | ||
"lerna": "2.9.0", | ||
"packages": [ | ||
"modules/**" | ||
], | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,6 +38,6 @@ | |
"@promises/to-observable": "^0.2.0" | ||
}, | ||
"peerDependencies": { | ||
"rxjs": "^5.4.3" | ||
"rxjs": "^5.5.6" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,6 +36,6 @@ | |
"@promises/interfaces": "^0.2.0" | ||
}, | ||
"peerDependencies": { | ||
"rxjs": "^5.4.3" | ||
"rxjs": "^5.5.6" | ||
} | ||
} |
Oops, something went wrong.