-
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.
v9.1.0 - Use jest instead of jest-cli (#163)
* v9.1.0: Package upgrades, including jest-cli from 23 to 25 * v9.1.0 - Destructure imports, package bump * v9.1.0 - Update lint task path * v9.1.0 - Use node 12 instead of node 8 * v9.1.0 - Node 12 is not compatible with gulp 3
- Loading branch information
1 parent
9ca3203
commit e82b94e
Showing
5 changed files
with
2,282 additions
and
1,272 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 |
---|---|---|
@@ -1,7 +1,6 @@ | ||
language: node_js | ||
|
||
node_js: | ||
- "8" | ||
- "10" | ||
|
||
cache: yarn | ||
|
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": "9.0.1", | ||
"version": "9.1.0", | ||
"description": "Gulp build tasks for use across Fozzie modules", | ||
"main": "index.js", | ||
"author": "Damian Mullins <[email protected]> (http://www.damianmullins.com)", | ||
|
@@ -21,29 +21,29 @@ | |
"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": { | ||
"@babel/cli": "7.7.0", | ||
"@babel/core": "7.7.2", | ||
"@babel/preset-env": "7.7.1", | ||
"@justeat/eslint-config-fozzie": "3.3.1", | ||
"@babel/cli": "7.8.4", | ||
"@babel/core": "7.8.4", | ||
"@babel/preset-env": "7.8.4", | ||
"@justeat/eslint-config-fozzie": "3.4.0", | ||
"@justeat/f-copy-assets": "1.1.0", | ||
"@justeat/f-templates-loader": "0.1.1", | ||
"@justeat/gulp-gh-pages": "1.0.3", | ||
"@justeat/stylelint-config-fozzie": "2.0.1", | ||
"assemble": "0.24.3", | ||
"autoprefixer": "9.7.1", | ||
"autoprefixer": "9.7.4", | ||
"babelify": "10.0.0", | ||
"browser-sync": "2.26.7", | ||
"browserify": "16.5.0", | ||
"cssnano": "4.1.10", | ||
"del": "3.0.0", | ||
"eslint": "6.6.0", | ||
"eslint-plugin-import": "2.18.2", | ||
"eslint": "6.8.0", | ||
"eslint-plugin-import": "2.20.1", | ||
"event-stream": "3.3.4", | ||
"exorcist": "1.0.1", | ||
"eyeglass": "1.4.1", | ||
|
@@ -64,7 +64,7 @@ | |
"gulp-rename": "1.4.0", | ||
"gulp-rev": "8.1.1", | ||
"gulp-sass": "4.0.2", | ||
"gulp-sass-variables": "1.1.1", | ||
"gulp-sass-variables": "1.2.0", | ||
"gulp-size": "3.0.0", | ||
"gulp-sourcemaps": "2.6.5", | ||
"gulp-strip-debug": "3.0.0", | ||
|
@@ -78,7 +78,7 @@ | |
"handlebars-helpers": "0.10.0", | ||
"helper-markdown": "1.0.0", | ||
"helper-md": "0.2.2", | ||
"jest-cli": "23.6.0", | ||
"jest": "25.1.0", | ||
"lodash.union": "4.6.0", | ||
"merge-stream": "1.0.1", | ||
"postcss-assets": "5.0.0", | ||
|
@@ -93,7 +93,7 @@ | |
}, | ||
"devDependencies": { | ||
"concurrently": "4.1.0", | ||
"coveralls": "3.0.7", | ||
"coveralls": "3.0.9", | ||
"danger": "6.1.6", | ||
"lodash.clonedeep": "4.5.0", | ||
"release-it": "8.1.0" | ||
|
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.