Skip to content

Commit

Permalink
Tweaks (#222)
Browse files Browse the repository at this point in the history
* Update dependencies

* Update travis and dependencies, clean files

* Update node version

* Only exit when failOnError enabled
  • Loading branch information
AlejandroPerezMartin authored Apr 28, 2020
1 parent 8b54627 commit 365b63f
Show file tree
Hide file tree
Showing 9 changed files with 1,255 additions and 567 deletions.
1 change: 0 additions & 1 deletion .node-version

This file was deleted.

5 changes: 3 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
language: node_js
node_js:
- "9"
- "8"
- "10"
- "12"
- "14"
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:10.14-alpine
FROM node:14.0-alpine

ENV NODE_ENV production
ENV FORCE_COLOR 1
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.onbuild
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:10.14-alpine
FROM node:14.0-alpine

ENV NODE_ENV production
ENV FORCE_COLOR 1
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@ Editor preferences are available in the [editor config](https://github.com/first

## Copyright

© 2019. First and Third, Inc. Maintained by [@firstandthird](https://github.com/orgs/firstandthird/people).
© 2020. First and Third, Inc. Maintained by [@firstandthird](https://github.com/orgs/firstandthird/people).
2 changes: 1 addition & 1 deletion demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
"dependencies": {
"animate.css": "^3.7.2",
"domassist": "^2.2.0",
"domodule": "^6.1.0"
"domodule": "^7.0.0"
}
}
1,774 changes: 1,231 additions & 543 deletions package-lock.json

Large diffs are not rendered by default.

32 changes: 16 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,29 +24,29 @@
},
"homepage": "https://github.com/firstandthird/clientkit#readme",
"devDependencies": {
"tap": "^14.10.6"
"tap": "^14.10.7"
},
"dependencies": {
"@babel/core": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/runtime": "^7.8.4",
"async": "^3.1.1",
"autoprefixer": "^9.7.4",
"babel-loader": "^8.0.6",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/runtime": "^7.9.2",
"async": "^3.2.0",
"autoprefixer": "^9.7.6",
"babel-loader": "^8.1.0",
"babel-preset-minify": "^0.5.1",
"chokidar": "^3.3.1",
"chokidar": "^3.4.0",
"clean-webpack-plugin": "^3.0.0",
"clientkit-styleguide": "^2.0.0",
"confi": "^9.10.1",
"css-loader": "^3.4.2",
"css-loader": "^3.5.3",
"css-mqpacker": "git+https://github.com/Antonio-Laguna/node-css-mqpacker.git#d5cbdd9fee12b69e712f338e19fa28845e7e0b80",
"cssnano": "^4.1.10",
"eslint": "^6.8.0",
"eslint-config-firstandthird": "^5.0.0",
"eslint-loader": "^3.0.3",
"eslint-plugin-import": "^2.20.1",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.20.2",
"extract-css-chunks-webpack-plugin": "^4.7.4",
"merge-options": "^2.0.0",
"normalize.css": "^8.0.1",
Expand All @@ -67,13 +67,13 @@
"postcss-triangle": "^2.0.0",
"require-all": "^3.0.0",
"sort-css-media-queries": "^1.5.0",
"svg-sprite-loader": "^4.2.1",
"svg-transform-loader": "^2.0.8",
"svg-sprite-loader": "^4.2.6",
"svg-transform-loader": "^2.0.13",
"svgo": "^1.3.2",
"svgo-loader": "^2.2.1",
"taskkit-svg-sprite": "^3.0.0",
"terser-webpack-plugin": "^2.3.5",
"webpack": "^4.41.6",
"terser-webpack-plugin": "^2.3.6",
"webpack": "^4.43.0",
"webpack-assets-manifest": "^3.1.1",
"webpack-cli": "^3.3.11",
"webpack-dashboard": "^3.2.0",
Expand Down
2 changes: 1 addition & 1 deletion webpack.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ const runWebpack = async function () {
version: false
}));

if (err || stats.hasErrors()) {
if (config.config.failOnError && (err || stats.hasErrors())) {
process.exit(1);
}
});
Expand Down

0 comments on commit 365b63f

Please sign in to comment.