customizr 3.0.3 → 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/README.md +1 -1
- package/cache/options.json +1 -1
- package/package.json +4 -4
|
@@ -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/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
|
|
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"
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"colors": "^1.4.0",
|
|
25
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",
|
|
@@ -34,8 +34,8 @@
|
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"chai": "^4.5.0",
|
|
37
|
-
"fs-extra": "^11.3.
|
|
38
|
-
"mocha": "^
|
|
37
|
+
"fs-extra": "^11.3.1",
|
|
38
|
+
"mocha": "^11.7.2",
|
|
39
39
|
"nexpect": "^0.6.0"
|
|
40
40
|
},
|
|
41
41
|
"optionalDependencies": {
|