Upgrade mkdirp dependency, remove node8 support (#2545)

* Upgrade mkdirp dependency, remove node8 support

* Chuck old and useless entry
This commit is contained in:
Veeck
2020-04-27 18:45:31 +02:00
committed by GitHub
parent f90b46a2bf
commit a286fc51ec
3 changed files with 23 additions and 12 deletions

View File

@@ -12,6 +12,10 @@
Modernizr tests which native CSS3 and HTML5 features are available in the current UA and makes the results available to you in two ways: as properties on a global `Modernizr` object, and as classes on the `<html>` element. This information allows you to progressively enhance your pages with a granular level of control over the experience.
## Breaking changes with v4
- Dropped Node 8 Support, please upgrade to Node v10
## New Asynchronous Event Listeners
Often times people want to know when an asynchronous test is done so they can allow their application to react to it.

21
package-lock.json generated
View File

@@ -5963,7 +5963,8 @@
"minimist": {
"version": "1.2.5",
"resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz",
"integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw=="
"integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==",
"dev": true
},
"mixin-deep": {
"version": "1.3.2",
@@ -5987,12 +5988,9 @@
}
},
"mkdirp": {
"version": "0.5.5",
"resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz",
"integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==",
"requires": {
"minimist": "^1.2.5"
}
"version": "1.0.4",
"resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz",
"integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw=="
},
"mocha": {
"version": "7.1.2",
@@ -6131,6 +6129,15 @@
"integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
"dev": true
},
"mkdirp": {
"version": "0.5.5",
"resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz",
"integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==",
"dev": true,
"requires": {
"minimist": "^1.2.5"
}
},
"normalize-path": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",

View File

@@ -51,7 +51,7 @@
"file": "^0.2.2",
"lodash": "^4.17.15",
"markdown-it": "^10.0.0",
"mkdirp": "0.5.5",
"mkdirp": "1.0.4",
"requirejs": "^2.3.6",
"yargs": "^15.3.1"
},
@@ -95,6 +95,9 @@
"update-changelog": "auto-changelog --commit-limit false --package",
"update-license": "node scripts/generate-license.js && git add LICENSE"
},
"engines": {
"node": ">=10"
},
"files": [
"LICENSE",
"README.md",
@@ -110,8 +113,5 @@
"javascript",
"browser",
"feature detection"
],
"directories": {
"test": "test"
}
]
}