Closed ronaldruzicka closed 7 years ago
Regarding the node version, you should reflect that in package.json ("engines"
key). It used for node version checking in https://github.com/actum/gulp-dev-stack/blob/master/gulp/environment.js
I think you can delete the suffix.js (module.js) altogether as there is already the cookieLaw module which is both an example and production ready.
@vbulant I already did, it is there:
"engines": {
"node": ">=8"
}
I updated all packages from our devstack to the latest version, except
eslint-plugin-jsx-a11y
, which was not compatible with other packages, but it works with version5.1.1
.From now on, we should use
node 8.2.1
andnpm 5.3.0
and higher.Removed
yarn.lock
, becausenpm v5
adds it's ownpackage-lock.json
.Changed error message format in
js
task, because it was not showing all message, which resulted in confusions with debugging the issueReplaced
module.js
withsuffix.js
, because it was not initiated inapp.js
and therefore doing nothing.Moved
autoprefixer
settings intopackage.json
as recommedned