-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v7.21.0 - Updating to eslint v5 and eslint-config-fozzie v2 (#133)
### Changed - Package versions updated (including `gulp-gh-pages` after contacting package owner).
- Loading branch information
1 parent
58ce166
commit 0d4566d
Showing
19 changed files
with
1,191 additions
and
845 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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@justeat/gulp-build-fozzie", | ||
"version": "7.20.1", | ||
"version": "7.21.0", | ||
"description": "Gulp build tasks for use across Fozzie modules", | ||
"main": "index.js", | ||
"author": "Damian Mullins <[email protected]> (http://www.damianmullins.com)", | ||
|
@@ -21,13 +21,13 @@ | |
"test": "jest", | ||
"test:cover": "jest --coverage", | ||
"test:cover:CI": "cat coverage/lcov.info | coveralls", | ||
"lint": "eslint **/*.js --fix", | ||
"lint": "eslint '**/*.js' --fix", | ||
"release-patch": "release-it patch --non-interactive -p", | ||
"release-minor": "release-it minor --non-interactive -p", | ||
"release-major": "release-it major --non-interactive -p" | ||
}, | ||
"dependencies": { | ||
"@justeat/eslint-config-fozzie": "^1.4.0", | ||
"@justeat/eslint-config-fozzie": "^2.0.1", | ||
"@justeat/f-copy-assets": "^0.6.0", | ||
"@justeat/f-templates-loader": "0.0.4", | ||
"@justeat/stylelint-config-fozzie": "^2.0.1", | ||
|
@@ -36,9 +36,9 @@ | |
"babelify": "^8.0.0", | ||
"browser-sync": "^2.23.6", | ||
"browserify": "^16.1.1", | ||
"cssnano": "^3.10.0", | ||
"cssnano": "^4.0.1", | ||
"del": "^3.0.0", | ||
"eslint": "^4.19.1", | ||
"eslint": "^5.1.0", | ||
"eslint-plugin-import": "^2.9.0", | ||
"event-stream": "^3.3.4", | ||
"exorcist": "^1.0.1", | ||
|
@@ -48,19 +48,19 @@ | |
"gulp-cached": "^1.1.1", | ||
"gulp-changed": "^3.2.0", | ||
"gulp-clone": "^2.0.1", | ||
"gulp-eslint": "^4.0.2", | ||
"gulp-eslint": "^5.0.0", | ||
"gulp-extname": "^0.2.2", | ||
"gulp-file": "^0.4.0", | ||
"gulp-filenames": "^4.0.1", | ||
"gulp-gh-pages": "^0.5.4", | ||
"gulp-gh-pages": "^0.6.0-1", | ||
"gulp-if": "^2.0.2", | ||
"gulp-imagemin": "^4.1.0", | ||
"gulp-newer": "^1.4.0", | ||
"gulp-plumber": "^1.2.0", | ||
"gulp-postcss": "^7.0.1", | ||
"gulp-rename": "^1.2.2", | ||
"gulp-rev": "^8.1.1", | ||
"gulp-sass": "^3.1.0", | ||
"gulp-sass": "^4.0.1", | ||
"gulp-sass-variables": "^1.1.1", | ||
"gulp-size": "^3.0.0", | ||
"gulp-sourcemaps": "^2.6.4", | ||
|
@@ -74,30 +74,27 @@ | |
"handlebars-helpers": "^0.10.0", | ||
"helper-markdown": "^1.0.0", | ||
"helper-md": "^0.2.2", | ||
"jest-cli": "^22.4.3", | ||
"jest-cli": "^23.4.0", | ||
"merge-stream": "^1.0.1", | ||
"postcss-assets": "^5.0.0", | ||
"postcss-reporter": "^5.0.0", | ||
"postcss-scss": "^1.0.4", | ||
"require-dir": "^1.0.0", | ||
"run-sequence": "^2.2.1", | ||
"stylelint": "^9.1.3", | ||
"stylelint-scss": "^2.5.0", | ||
"stylelint-scss": "^3.1.3", | ||
"sw-precache": "^5.2.1", | ||
"vinyl-buffer": "^1.0.1", | ||
"vinyl-source-stream": "^2.0.0" | ||
}, | ||
"devDependencies": { | ||
"concurrently": "^3.5.1", | ||
"coveralls": "^3.0.0", | ||
"danger": "3.3.2", | ||
"danger": "3.7.20", | ||
"lodash.clonedeep": "^4.5.0", | ||
"release-it": "^7.2.1" | ||
}, | ||
"peerDependencies": { | ||
"gulp": "^3.9.1" | ||
}, | ||
"resolutions": { | ||
"gulp-gh-pages/gift": "0.10.2" | ||
} | ||
} |
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
Oops, something went wrong.