forked from redux-saga/redux-saga
-
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.
Merge remote-tracking branch 'camflan/master'
- Loading branch information
Showing
8 changed files
with
47 additions
and
29 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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
language: node_js | ||
|
||
after_script: | ||
- npm run check:bundlesize |
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
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
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
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 |
---|---|---|
|
@@ -9,6 +9,7 @@ | |
"lint": "eslint src", | ||
"test": "cross-env BABEL_ENV=cjs babel-node test/index.js | tap-spec", | ||
"check": "npm run lint && npm run test", | ||
"check:bundlesize": "cross-env BABEL_ENV=es ./node_modules/.bin/bundlesize", | ||
"clean": "rimraf dist es lib", | ||
"build:umd:dev": "cross-env BABEL_ENV=es NODE_ENV=development rollup -c -i src/index.js -o dist/redux-saga.js", | ||
"build:umd:prod": "cross-env BABEL_ENV=es NODE_ENV=production rollup -c -i src/index.js -o dist/redux-saga.min.js", | ||
|
@@ -48,6 +49,12 @@ | |
"effects", | ||
"side effects" | ||
], | ||
"bundlesize": [ | ||
{ | ||
"path": "./dist/redux-saga.min.js", | ||
"maxSize": "8 Kb" | ||
} | ||
], | ||
"author": "Yassine ELOUAFI <[email protected]>", | ||
"contributors": [ | ||
"Mateusz Burzyński <[email protected]> (https://github.com/Andarist)" | ||
|
@@ -68,6 +75,7 @@ | |
"babel-preset-es2015": "^6.14.0", | ||
"babel-preset-react": "^6.11.1", | ||
"babel-preset-stage-2": "^6.13.0", | ||
"bundlesize": "^0.11.0", | ||
"cross-env": "^1.0.8", | ||
"eslint": "^2.8.0", | ||
"express": "^4.13.3", | ||
|