color-name-list 13.16.0 → 13.17.0
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.
|
@@ -19,8 +19,12 @@ jobs:
|
|
|
19
19
|
- name: Setup Node.js
|
|
20
20
|
uses: actions/setup-node@v3
|
|
21
21
|
with:
|
|
22
|
-
node-version:
|
|
22
|
+
node-version: 23.x
|
|
23
23
|
cache: 'npm'
|
|
24
|
+
- name: Use npm 11.6.0
|
|
25
|
+
run: |
|
|
26
|
+
corepack enable
|
|
27
|
+
corepack prepare npm@11.6.0 --activate
|
|
24
28
|
|
|
25
29
|
- name: Install dependencies
|
|
26
30
|
run: npm ci
|
|
@@ -21,8 +21,14 @@ jobs:
|
|
|
21
21
|
with:
|
|
22
22
|
node-version: ${{ matrix.node-version }}
|
|
23
23
|
cache: 'npm'
|
|
24
|
-
-
|
|
25
|
-
|
|
24
|
+
- name: Install dependencies
|
|
25
|
+
run: npm ci
|
|
26
|
+
- name: Use npm 11.6.0
|
|
27
|
+
run: |
|
|
28
|
+
corepack enable
|
|
29
|
+
corepack prepare npm@11.6.0 --activate
|
|
30
|
+
- name: Build
|
|
31
|
+
run: npm run build
|
|
26
32
|
- run: npm test
|
|
27
33
|
- name: Check for changes
|
|
28
34
|
id: git-check
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "color-name-list",
|
|
3
|
-
"version": "13.
|
|
3
|
+
"version": "13.17.0",
|
|
4
4
|
"description": "long list of color names",
|
|
5
5
|
"main": "dist/colornames.json",
|
|
6
6
|
"browser": "dist/colornames.umd.js",
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"@eslint/js": "^9.25.1",
|
|
61
61
|
"closestvector": "^0.6.0",
|
|
62
62
|
"color-name-lists": "^3.2.0",
|
|
63
|
-
"commitizen": "^3.
|
|
63
|
+
"commitizen": "^4.3.1",
|
|
64
64
|
"eslint": "^9.25.1",
|
|
65
65
|
"eslint-config-google": "^0.10.0",
|
|
66
66
|
"eslint-config-prettier": "^10.1.2",
|
|
@@ -71,6 +71,7 @@
|
|
|
71
71
|
"prettier": "^3.5.3",
|
|
72
72
|
"seedrandom": "^3.0.5",
|
|
73
73
|
"semantic-release": "^24.2.0",
|
|
74
|
+
"typescript": "5.9.3",
|
|
74
75
|
"vitest": "^3.1.2"
|
|
75
76
|
},
|
|
76
77
|
"engines": {
|