Skip to content
This repository was archived by the owner on Jun 18, 2019. It is now read-only.

Commit c57c036

Browse files
authored
feat(Config): introduces new simple API
BREAKING CHANGE: Previously exposed internal classes and instances are now really internal. For most cases everything will work fine, but anyway please check https://github.com/Fitbit/webpack-config/wiki/Changelog
1 parent 4326357 commit c57c036

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+4183
-1204
lines changed

.babelrc

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,9 @@
1818
"add-module-exports",
1919
"transform-runtime"
2020
],
21-
"ignore": [
22-
"node_modules/",
23-
"**/wallaby/wallaby/**"
21+
"only": [
22+
"src/",
23+
"test/",
24+
"jasmine.js"
2425
]
2526
}

.eslintrc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@
1414
"sourceType": "module"
1515
},
1616
"plugins": [
17-
"babel"
17+
"babel",
18+
"markdown"
1819
],
1920
"rules": {
2021
"valid-jsdoc": ["error", {

.gitdown/README.md

Lines changed: 0 additions & 73 deletions
This file was deleted.

.gitdown/conf/webpack.base.config.js

Lines changed: 0 additions & 30 deletions
This file was deleted.

.gitdown/conf/webpack.development.config.js

Lines changed: 0 additions & 23 deletions
This file was deleted.

.gitdown/conf/webpack.production.config.js

Lines changed: 0 additions & 27 deletions
This file was deleted.

.gitdown/webpack.config.js

Lines changed: 0 additions & 8 deletions
This file was deleted.

.gitdown/webpack.npm.config.js

Lines changed: 0 additions & 9 deletions
This file was deleted.

.travis.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,9 @@ branches:
2323
before_install:
2424
- git config --global user.name "$GH_USER_NAME"
2525
- git config --global user.email "$GH_USER_EMAIL"
26-
before_script:
27-
- npm prune
2826
script:
29-
- npm run clean
30-
- npm run eslint
31-
- npm run cover
27+
- yarn run clean
28+
- yarn run eslint
29+
- yarn run cover
3230
after_script:
3331
- '[ "${TRAVIS_PULL_REQUEST}" = "false" ] && .travis/after-all.sh || false'

.travis/after-all.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ declare exitCode;
33
$(npm bin)/travis-after-all
44
exitCode=$?
55
if [ $exitCode -eq 0 ]; then
6-
npm run build;
7-
npm run codeclimate;
8-
npm run semantic-release;
9-
npm run jsdoc;
10-
npm run gh-pages;
6+
yarn run build;
7+
yarn run codeclimate;
8+
yarn run semantic-release;
9+
yarn run jsdoc;
10+
yarn run gh-pages;
1111
fi

0 commit comments

Comments
 (0)