@npmcli/template-oss 4.28.0 → 4.29.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.
- package/lib/content/_job-matrix-yml.hbs +3 -2
- package/package.json +10 -10
|
@@ -12,7 +12,7 @@ strategy:
|
|
|
12
12
|
os: macos-latest
|
|
13
13
|
shell: bash
|
|
14
14
|
- name: macOS
|
|
15
|
-
os: macos-
|
|
15
|
+
os: macos-15-intel
|
|
16
16
|
shell: bash
|
|
17
17
|
{{/if}}
|
|
18
18
|
{{#if windowsCI}}
|
|
@@ -27,7 +27,8 @@ strategy:
|
|
|
27
27
|
{{#if macCI}}
|
|
28
28
|
exclude:
|
|
29
29
|
{{#each ciVersions}}
|
|
30
|
-
|
|
30
|
+
{{!-- M1 macs do not have builds of node 14 and below --}}
|
|
31
|
+
- platform: {name: macOS, os: {{#if (lte (semverRangeMajor .) 14)}}macos-latest{{else}}macos-15-intel{{/if}}, shell: bash}
|
|
31
32
|
node-version: {{ . }}
|
|
32
33
|
{{/each}}
|
|
33
34
|
{{/if}}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@npmcli/template-oss",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.29.0",
|
|
4
4
|
"description": "templated files used in npm CLI team oss projects",
|
|
5
5
|
"main": "lib/content/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -34,9 +34,9 @@
|
|
|
34
34
|
"author": "GitHub Inc.",
|
|
35
35
|
"license": "ISC",
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@actions/core": "^
|
|
38
|
-
"@commitlint/cli": "^
|
|
39
|
-
"@commitlint/config-conventional": "^
|
|
37
|
+
"@actions/core": "^2.0.0",
|
|
38
|
+
"@commitlint/cli": "^20.1.0",
|
|
39
|
+
"@commitlint/config-conventional": "^20.0.0",
|
|
40
40
|
"@isaacs/string-locale-compare": "^1.1.0",
|
|
41
41
|
"@npmcli/arborist": "^9.1.2",
|
|
42
42
|
"@npmcli/git": "^7.0.0",
|
|
@@ -45,18 +45,18 @@
|
|
|
45
45
|
"@octokit/rest": "^22.0.0",
|
|
46
46
|
"dedent": "^1.5.1",
|
|
47
47
|
"diff": "^8.0.2",
|
|
48
|
-
"glob": "^
|
|
48
|
+
"glob": "^13.0.0",
|
|
49
49
|
"handlebars": "^4.7.7",
|
|
50
50
|
"hosted-git-info": "^9.0.0",
|
|
51
|
-
"ini": "^
|
|
52
|
-
"json-parse-even-better-errors": "^
|
|
51
|
+
"ini": "^6.0.0",
|
|
52
|
+
"json-parse-even-better-errors": "^5.0.0",
|
|
53
53
|
"just-deep-map-values": "^1.1.1",
|
|
54
54
|
"just-diff": "^6.0.0",
|
|
55
55
|
"just-omit": "^2.2.0",
|
|
56
56
|
"lodash": "^4.17.21",
|
|
57
57
|
"minimatch": "^10.0.3",
|
|
58
58
|
"npm-package-arg": "^13.0.0",
|
|
59
|
-
"proc-log": "^
|
|
59
|
+
"proc-log": "^6.0.0",
|
|
60
60
|
"release-please": "^17.1.1",
|
|
61
61
|
"semver": "^7.3.5",
|
|
62
62
|
"yaml": "^2.1.1"
|
|
@@ -67,9 +67,9 @@
|
|
|
67
67
|
],
|
|
68
68
|
"devDependencies": {
|
|
69
69
|
"@github/prettier-config": "0.0.6",
|
|
70
|
-
"@npmcli/eslint-config": "^
|
|
70
|
+
"@npmcli/eslint-config": "^6.0.1",
|
|
71
71
|
"@npmcli/template-oss": "file:./",
|
|
72
|
-
"eslint-config-prettier": "^
|
|
72
|
+
"eslint-config-prettier": "^10.1.8",
|
|
73
73
|
"nock": "^14.0.6",
|
|
74
74
|
"prettier": "^3.2.5",
|
|
75
75
|
"tap": "^21.0.1"
|