-
-
Notifications
You must be signed in to change notification settings - Fork 582
Commit
…ors" BREAKING CHANGE: I've finally taken the time to update the entire build system for the library using ng-packagr instead of my own custom webpack config. I've also added support for rxjs lettable operators at the same time, it means that I've been forced to add a peer dependency for RxJS >= 5.5.2. and I've updated the minimum Angular version to >=5.0.0. The library should be much smaller (from ~80ko to ~20ko for the umd bundle!) and it now supports ES2015 to be tree-shackable which might drop the size even more. It should also fix the "Unexpected token import errors" that some people were experiencing. Unfortunately this might be breaking people since the peer dependency have changed and that's why it's a new major version. Closes #724, Fixes #581
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,6 +18,8 @@ npm-debug.log | |
coverage | ||
*.metadata.json | ||
bundles | ||
build | ||
dist | ||
|
||
################# | ||
## JetBrains | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,17 @@ | ||
language: node_js | ||
|
||
cache: yarn | ||
|
||
sudo: false | ||
|
||
notifications: | ||
email: false | ||
|
||
node_js: | ||
- '7' | ||
|
||
branches: | ||
except: | ||
- "/^v\\d+\\.\\d+\\.\\d+$/" | ||
|
||
- '8' | ||
before_install: | ||
- export CHROME_BIN=chromium-browser | ||
|
||
before_script: | ||
- npm prune | ||
|
||
after_success: | ||
- npm run semantic-release | ||
|
||
- yarn semantic-release | ||
branches: | ||
except: | ||
- /^v\d+\.\d+\.\d+$/ | ||
before_script: | ||
- export DISPLAY=:99.0 | ||
- sh -e /etc/init.d/xvfb start | ||
- sh -e /etc/init.d/xvfb start |
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.