customizr 2.0.4 → 3.0.1
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/build/modernizr-custom.js +7038 -6
- package/build/modernizr-exclude.js +108 -7
- package/build/modernizr-package.js +7038 -6
- package/build/modernizr-prefixed.js +2 -2
- package/build/modernizr-select.js +2 -2
- package/cache/options.json +5 -2
- package/package.json +7 -6
- package/test/css/vanilla.css +217 -214
- package/test/js/amd.js +4 -1
- package/test/js/vanilla.js +4 -1
- package/test/tests.js +1 -1
|
@@ -15,12 +15,12 @@ jobs:
|
|
|
15
15
|
timeout-minutes: 30
|
|
16
16
|
strategy:
|
|
17
17
|
matrix:
|
|
18
|
-
node-version: [
|
|
18
|
+
node-version: [16.x, 18.x, 20.x]
|
|
19
19
|
steps:
|
|
20
20
|
- name: Checkout code 🛎️
|
|
21
|
-
uses: actions/checkout@
|
|
21
|
+
uses: actions/checkout@v3
|
|
22
22
|
- name: Setup Node.js ${{ matrix.node-version }}
|
|
23
|
-
uses: actions/setup-node@
|
|
23
|
+
uses: actions/setup-node@v3
|
|
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
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# customizr
|
|
2
2
|
|
|
3
3
|
[](https://github.com/Modernizr/customizr/actions/workflows/testing.yml)
|
|
4
|
-
[](https://badge.fury.io/js/customizr)
|
|
5
5
|
|
|
6
6
|
##### *tl;dr:* This tool crawls through your project files, gathers up your references to Modernizr tests and outputs a lean, mean Modernizr machine.
|
|
7
7
|
|
|
@@ -254,5 +254,5 @@ modernizr(settings, function () {
|
|
|
254
254
|
```
|
|
255
255
|
|
|
256
256
|
## License
|
|
257
|
-
Copyright (c)
|
|
257
|
+
Copyright (c) 2023 The Modernizr team
|
|
258
258
|
Licensed under the MIT license.
|