customizr 3.0.2 → 3.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/testing.yml +3 -3
- package/LICENSE +1 -1
- package/README.md +2 -2
- package/cache/options.json +1 -1
- package/package.json +6 -6
|
@@ -15,12 +15,12 @@ jobs:
|
|
|
15
15
|
timeout-minutes: 30
|
|
16
16
|
strategy:
|
|
17
17
|
matrix:
|
|
18
|
-
node-version: [
|
|
18
|
+
node-version: [20.x, 22.x]
|
|
19
19
|
steps:
|
|
20
20
|
- name: Checkout code 🛎️
|
|
21
|
-
uses: actions/checkout@
|
|
21
|
+
uses: actions/checkout@v5
|
|
22
22
|
- name: Setup Node.js ${{ matrix.node-version }}
|
|
23
|
-
uses: actions/setup-node@
|
|
23
|
+
uses: actions/setup-node@v5
|
|
24
24
|
with:
|
|
25
25
|
node-version: ${{ matrix.node-version }}
|
|
26
26
|
- name: Install dependencies and run tests
|
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -47,7 +47,7 @@ A Grunt wrapper is available at: [https://github.com/Modernizr/grunt-modernizr](
|
|
|
47
47
|
|
|
48
48
|
## Use with Gulp
|
|
49
49
|
|
|
50
|
-
A Gulp wrapper is available at: [https://github.com/
|
|
50
|
+
A Gulp wrapper is available at: [https://github.com/Modernizr/gulp-modernizr](https://github.com/Modernizr/gulp-modernizr)
|
|
51
51
|
|
|
52
52
|
## Getting Started
|
|
53
53
|
|
|
@@ -254,5 +254,5 @@ modernizr(settings, function () {
|
|
|
254
254
|
```
|
|
255
255
|
|
|
256
256
|
## License
|
|
257
|
-
Copyright (c)
|
|
257
|
+
Copyright (c) 2025 The Modernizr team
|
|
258
258
|
Licensed under the MIT license.
|
package/cache/options.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "customizr",
|
|
3
3
|
"description": "Build out a lean, mean Modernizr machine.",
|
|
4
|
-
"version": "3.0.
|
|
4
|
+
"version": "3.0.4",
|
|
5
5
|
"main": "src",
|
|
6
6
|
"bin": {
|
|
7
7
|
"customizr": "bin/customizr"
|
|
@@ -22,20 +22,20 @@
|
|
|
22
22
|
],
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"colors": "^1.4.0",
|
|
25
|
-
"cross-spawn": "^7.0.
|
|
25
|
+
"cross-spawn": "^7.0.6",
|
|
26
26
|
"fast-deep-equal": "^3.1.3",
|
|
27
|
-
"glob": "^11.0.
|
|
27
|
+
"glob": "^11.0.3",
|
|
28
28
|
"lodash": "^4.17.21",
|
|
29
29
|
"mkdirp": "^3.0.1",
|
|
30
30
|
"modernizr": "^3",
|
|
31
|
-
"nopt": "^8.
|
|
31
|
+
"nopt": "^8.1.0",
|
|
32
32
|
"promised-io": "^0.3.6",
|
|
33
33
|
"yargs": "^17.7.2"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"chai": "^4.5.0",
|
|
37
|
-
"fs-extra": "^11.
|
|
38
|
-
"mocha": "^
|
|
37
|
+
"fs-extra": "^11.3.1",
|
|
38
|
+
"mocha": "^11.7.2",
|
|
39
39
|
"nexpect": "^0.6.0"
|
|
40
40
|
},
|
|
41
41
|
"optionalDependencies": {
|