mirror of https://github.com/twbs/bootstrap.git
Update devDependencies. (#28798)
Notably: * bundlesize 0.15.3 → ^0.17.2 * eslint-plugin-unicorn ^8.0.2 → ^9.0.0 * terser ^3.17.0 → ^4.0.0
This commit is contained in:
parent
8a79cf894d
commit
8f97e2dc52
|
@ -45,6 +45,7 @@
|
|||
],
|
||||
"unicorn/explicit-length-check": "off",
|
||||
"unicorn/import-index": "off",
|
||||
"unicorn/no-for-loop": "off",
|
||||
"unicorn/no-unused-properties": "error",
|
||||
"unicorn/prefer-includes": "off",
|
||||
"unicorn/prefer-node-append": "off",
|
||||
|
|
File diff suppressed because it is too large
Load Diff
22
package.json
22
package.json
|
@ -75,7 +75,7 @@
|
|||
"predocs-serve": "npm-run-all css-copy js-copy",
|
||||
"docs-serve": "hugo server --port 9001 --disableFastRender",
|
||||
"docs-serve-only": "http-server _gh_pages -p 9001 -a localhost",
|
||||
"update-deps": "ncu -a -x bundlesize && npm update && cross-env-shell echo Manually update \\\"site/static/docs/$npm_package_version_short/assets/js/vendor/\\\"",
|
||||
"update-deps": "ncu -a && npm update && cross-env-shell echo Manually update \\\"site/static/docs/$npm_package_version_short/assets/js/vendor/\\\"",
|
||||
"release": "npm-run-all dist release-sri release-zip docs-production",
|
||||
"release-sri": "node build/generate-sri.js",
|
||||
"release-version": "node build/change-version.js",
|
||||
|
@ -107,25 +107,25 @@
|
|||
},
|
||||
"devDependencies": {
|
||||
"@babel/cli": "^7.4.4",
|
||||
"@babel/core": "^7.4.4",
|
||||
"@babel/core": "^7.4.5",
|
||||
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
|
||||
"@babel/preset-env": "^7.4.4",
|
||||
"@babel/preset-env": "^7.4.5",
|
||||
"autoprefixer": "^9.5.1",
|
||||
"babel-eslint": "^10.0.1",
|
||||
"babel-plugin-istanbul": "^5.1.4",
|
||||
"bundlesize": "0.15.3",
|
||||
"bundlesize": "^0.17.2",
|
||||
"clean-css-cli": "^4.3.0",
|
||||
"coveralls": "^3.0.3",
|
||||
"cross-env": "^5.2.0",
|
||||
"eslint": "^5.16.0",
|
||||
"eslint-config-xo": "^0.26.0",
|
||||
"eslint-plugin-import": "^2.17.2",
|
||||
"eslint-plugin-unicorn": "^8.0.2",
|
||||
"eslint-plugin-import": "^2.17.3",
|
||||
"eslint-plugin-unicorn": "^9.0.0",
|
||||
"find-unused-sass-variables": "^0.3.3",
|
||||
"glob": "^7.1.4",
|
||||
"hammer-simulator": "0.0.1",
|
||||
"http-server": "^0.11.1",
|
||||
"hugo-bin": "^0.43.5",
|
||||
"hugo-bin": "^0.43.6",
|
||||
"ip": "^1.1.5",
|
||||
"jquery": "^3.4.1",
|
||||
"karma": "^4.1.0",
|
||||
|
@ -138,20 +138,20 @@
|
|||
"karma-sinon": "^1.0.5",
|
||||
"linkinator": "^1.4.2",
|
||||
"node-sass": "^4.12.0",
|
||||
"nodemon": "^1.19.0",
|
||||
"nodemon": "^1.19.1",
|
||||
"npm-run-all": "^4.1.5",
|
||||
"popper.js": "^1.15.0",
|
||||
"postcss-cli": "^6.1.2",
|
||||
"qunit": "^2.9.2",
|
||||
"rollup": "^1.12.1",
|
||||
"rollup": "^1.13.1",
|
||||
"rollup-plugin-babel": "^4.3.2",
|
||||
"rollup-plugin-node-resolve": "^5.0.0",
|
||||
"rollup-plugin-node-resolve": "^5.0.1",
|
||||
"shelljs": "^0.8.3",
|
||||
"shx": "^0.3.2",
|
||||
"sinon": "^7.3.2",
|
||||
"stylelint": "^10.0.1",
|
||||
"stylelint-config-twbs-bootstrap": "^0.3.1",
|
||||
"terser": "^3.17.0",
|
||||
"terser": "^4.0.0",
|
||||
"vnu-jar": "18.11.5"
|
||||
},
|
||||
"engines": {
|
||||
|
|
|
@ -32,6 +32,7 @@
|
|||
"never"
|
||||
],
|
||||
"strict": "error",
|
||||
"unicorn/no-for-loop": "off",
|
||||
"unicorn/prefer-includes": "off",
|
||||
"unicorn/prefer-node-append": "off",
|
||||
"unicorn/prefer-query-selector": "off",
|
||||
|
|
Loading…
Reference in New Issue