@rtorcato/js-tooling 2.19.1 → 2.19.2
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/dist/cli/commands/fix.js +4 -4
- package/dist/cli/generators/build.js +30 -0
- package/dist/cli/generators/github-actions.js +25 -25
- package/dist/cli/generators/gitlab-ci.js +1 -1
- package/dist/cli/generators/linting.js +1 -1
- package/dist/cli/generators/security.js +1 -1
- package/dist/cli/generators/typedoc.js +3 -3
- package/package.json +3 -2
- package/tooling/biome/biome.json +2 -2
- package/tooling/semantic-release/github.mjs +5 -2
- package/tooling/semantic-release/index.mjs +5 -2
package/dist/cli/commands/fix.js
CHANGED
|
@@ -210,17 +210,17 @@ const FIXERS = [
|
|
|
210
210
|
},
|
|
211
211
|
{
|
|
212
212
|
target: 'semantic-release',
|
|
213
|
-
description: 'Scaffold release.config.mjs (skipped on private packages)',
|
|
213
|
+
description: 'Scaffold release.config.mjs + install preset plugins (skipped on private packages)',
|
|
214
214
|
appliesTo: ['semantic-release'],
|
|
215
|
-
outputs: ['release.config.mjs'],
|
|
215
|
+
outputs: ['release.config.mjs', 'package.json'],
|
|
216
216
|
canFixDrift: true,
|
|
217
217
|
async run({ targetDir, pkg }) {
|
|
218
218
|
if (pkg?.private === true) {
|
|
219
219
|
console.log(chalk.gray(' skipping — package is private'));
|
|
220
220
|
return { filesWritten: [] };
|
|
221
221
|
}
|
|
222
|
-
await generateSemanticReleaseConfig(targetDir);
|
|
223
|
-
return { filesWritten
|
|
222
|
+
const filesWritten = await generateSemanticReleaseConfig(targetDir);
|
|
223
|
+
return { filesWritten };
|
|
224
224
|
},
|
|
225
225
|
},
|
|
226
226
|
{
|
|
@@ -71,11 +71,41 @@ export default mergeConfig(preset, defineConfig({ plugins: [react()] }))
|
|
|
71
71
|
`;
|
|
72
72
|
await fs.writeFile(viteConfigPath, viteConfig);
|
|
73
73
|
}
|
|
74
|
+
// Plugins the github/gitlab preset activates that semantic-release core does
|
|
75
|
+
// NOT bundle (core bundles only commit-analyzer, release-notes-generator, npm,
|
|
76
|
+
// github). Without these in the consumer's deps, `semantic-release` crashes
|
|
77
|
+
// with "Cannot find module '@semantic-release/changelog'" on first run.
|
|
78
|
+
const RELEASE_PLUGIN_DEPS = {
|
|
79
|
+
'@semantic-release/changelog': '^6.0.0',
|
|
80
|
+
'@semantic-release/git': '^10.0.0',
|
|
81
|
+
};
|
|
74
82
|
export async function generateSemanticReleaseConfig(targetDir) {
|
|
75
83
|
const releaseConfigPath = path.join(targetDir, 'release.config.mjs');
|
|
76
84
|
const releaseConfig = `export { default } from '@rtorcato/js-tooling/semantic-release/github'
|
|
77
85
|
`;
|
|
78
86
|
await fs.writeFile(releaseConfigPath, releaseConfig);
|
|
87
|
+
const written = ['release.config.mjs'];
|
|
88
|
+
// Ensure the preset's non-bundled plugins are installed; otherwise the
|
|
89
|
+
// scaffolded release.config.mjs references modules the consumer lacks.
|
|
90
|
+
const pkgPath = path.join(targetDir, 'package.json');
|
|
91
|
+
if (await fs.pathExists(pkgPath)) {
|
|
92
|
+
const pkg = (await fs.readJson(pkgPath));
|
|
93
|
+
const devDeps = (pkg.devDependencies ?? {});
|
|
94
|
+
const deps = (pkg.dependencies ?? {});
|
|
95
|
+
let changed = false;
|
|
96
|
+
for (const [name, version] of Object.entries(RELEASE_PLUGIN_DEPS)) {
|
|
97
|
+
if (!devDeps[name] && !deps[name]) {
|
|
98
|
+
devDeps[name] = version;
|
|
99
|
+
changed = true;
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
if (changed) {
|
|
103
|
+
pkg.devDependencies = devDeps;
|
|
104
|
+
await fs.writeJson(pkgPath, pkg, { spaces: 2 });
|
|
105
|
+
written.push('package.json');
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
return written;
|
|
79
109
|
}
|
|
80
110
|
export async function generateChangesetsConfig(targetDir) {
|
|
81
111
|
// Drop the canonical Changesets config into .changeset/config.json. The user
|
|
@@ -48,15 +48,15 @@ jobs:
|
|
|
48
48
|
cache-key: \${{ steps.cache-key.outputs.key }}
|
|
49
49
|
steps:
|
|
50
50
|
- name: 📦 Checkout repository
|
|
51
|
-
uses: actions/checkout@
|
|
51
|
+
uses: actions/checkout@v7
|
|
52
52
|
|
|
53
53
|
- name: 📦 Setup Node.js
|
|
54
|
-
uses: actions/setup-node@
|
|
54
|
+
uses: actions/setup-node@v6
|
|
55
55
|
with:
|
|
56
56
|
node-version-file: .nvmrc
|
|
57
57
|
|
|
58
58
|
- name: 📦 Setup pnpm
|
|
59
|
-
uses: pnpm/action-setup@
|
|
59
|
+
uses: pnpm/action-setup@v6
|
|
60
60
|
with:
|
|
61
61
|
version: latest
|
|
62
62
|
|
|
@@ -65,7 +65,7 @@ jobs:
|
|
|
65
65
|
run: echo "key=\${{ runner.os }}-pnpm-\${{ hashFiles('**/pnpm-lock.yaml') }}" >> $GITHUB_OUTPUT
|
|
66
66
|
|
|
67
67
|
- name: 📦 Cache dependencies
|
|
68
|
-
uses: actions/cache@
|
|
68
|
+
uses: actions/cache@v5
|
|
69
69
|
with:
|
|
70
70
|
path: |
|
|
71
71
|
~/.pnpm-store
|
|
@@ -83,20 +83,20 @@ jobs:
|
|
|
83
83
|
if: needs.check-skip.outputs.should-skip != 'true'
|
|
84
84
|
steps:
|
|
85
85
|
- name: 📦 Checkout repository
|
|
86
|
-
uses: actions/checkout@
|
|
86
|
+
uses: actions/checkout@v7
|
|
87
87
|
|
|
88
88
|
- name: 📦 Setup Node.js
|
|
89
|
-
uses: actions/setup-node@
|
|
89
|
+
uses: actions/setup-node@v6
|
|
90
90
|
with:
|
|
91
91
|
node-version-file: .nvmrc
|
|
92
92
|
|
|
93
93
|
- name: 📦 Setup pnpm
|
|
94
|
-
uses: pnpm/action-setup@
|
|
94
|
+
uses: pnpm/action-setup@v6
|
|
95
95
|
with:
|
|
96
96
|
version: latest
|
|
97
97
|
|
|
98
98
|
- name: 📦 Restore dependencies cache
|
|
99
|
-
uses: actions/cache@
|
|
99
|
+
uses: actions/cache@v5
|
|
100
100
|
with:
|
|
101
101
|
path: |
|
|
102
102
|
~/.pnpm-store
|
|
@@ -113,20 +113,20 @@ ${hasTypeScript
|
|
|
113
113
|
if: needs.check-skip.outputs.should-skip != 'true'
|
|
114
114
|
steps:
|
|
115
115
|
- name: 📦 Checkout repository
|
|
116
|
-
uses: actions/checkout@
|
|
116
|
+
uses: actions/checkout@v7
|
|
117
117
|
|
|
118
118
|
- name: 📦 Setup Node.js
|
|
119
|
-
uses: actions/setup-node@
|
|
119
|
+
uses: actions/setup-node@v6
|
|
120
120
|
with:
|
|
121
121
|
node-version-file: .nvmrc
|
|
122
122
|
|
|
123
123
|
- name: 📦 Setup pnpm
|
|
124
|
-
uses: pnpm/action-setup@
|
|
124
|
+
uses: pnpm/action-setup@v6
|
|
125
125
|
with:
|
|
126
126
|
version: latest
|
|
127
127
|
|
|
128
128
|
- name: 📦 Restore dependencies cache
|
|
129
|
-
uses: actions/cache@
|
|
129
|
+
uses: actions/cache@v5
|
|
130
130
|
with:
|
|
131
131
|
path: |
|
|
132
132
|
~/.pnpm-store
|
|
@@ -144,20 +144,20 @@ ${hasTests
|
|
|
144
144
|
if: needs.check-skip.outputs.should-skip != 'true'
|
|
145
145
|
steps:
|
|
146
146
|
- name: 📦 Checkout repository
|
|
147
|
-
uses: actions/checkout@
|
|
147
|
+
uses: actions/checkout@v7
|
|
148
148
|
|
|
149
149
|
- name: 📦 Setup Node.js
|
|
150
|
-
uses: actions/setup-node@
|
|
150
|
+
uses: actions/setup-node@v6
|
|
151
151
|
with:
|
|
152
152
|
node-version-file: .nvmrc
|
|
153
153
|
|
|
154
154
|
- name: 📦 Setup pnpm
|
|
155
|
-
uses: pnpm/action-setup@
|
|
155
|
+
uses: pnpm/action-setup@v6
|
|
156
156
|
with:
|
|
157
157
|
version: latest
|
|
158
158
|
|
|
159
159
|
- name: 📦 Restore dependencies cache
|
|
160
|
-
uses: actions/cache@
|
|
160
|
+
uses: actions/cache@v5
|
|
161
161
|
with:
|
|
162
162
|
path: |
|
|
163
163
|
~/.pnpm-store
|
|
@@ -175,20 +175,20 @@ ${hasBuild
|
|
|
175
175
|
if: needs.check-skip.outputs.should-skip != 'true'
|
|
176
176
|
steps:
|
|
177
177
|
- name: 📦 Checkout repository
|
|
178
|
-
uses: actions/checkout@
|
|
178
|
+
uses: actions/checkout@v7
|
|
179
179
|
|
|
180
180
|
- name: 📦 Setup Node.js
|
|
181
|
-
uses: actions/setup-node@
|
|
181
|
+
uses: actions/setup-node@v6
|
|
182
182
|
with:
|
|
183
183
|
node-version-file: .nvmrc
|
|
184
184
|
|
|
185
185
|
- name: 📦 Setup pnpm
|
|
186
|
-
uses: pnpm/action-setup@
|
|
186
|
+
uses: pnpm/action-setup@v6
|
|
187
187
|
with:
|
|
188
188
|
version: latest
|
|
189
189
|
|
|
190
190
|
- name: 📦 Restore dependencies cache
|
|
191
|
-
uses: actions/cache@
|
|
191
|
+
uses: actions/cache@v5
|
|
192
192
|
with:
|
|
193
193
|
path: |
|
|
194
194
|
~/.pnpm-store
|
|
@@ -199,7 +199,7 @@ ${hasBuild
|
|
|
199
199
|
run: pnpm build
|
|
200
200
|
|
|
201
201
|
- name: 📦 Upload build artifacts
|
|
202
|
-
uses: actions/upload-artifact@
|
|
202
|
+
uses: actions/upload-artifact@v7
|
|
203
203
|
with:
|
|
204
204
|
name: build-artifacts
|
|
205
205
|
path: |
|
|
@@ -221,24 +221,24 @@ ${isLibrary && config.semanticRelease
|
|
|
221
221
|
id-token: write
|
|
222
222
|
steps:
|
|
223
223
|
- name: 📦 Checkout repository
|
|
224
|
-
uses: actions/checkout@
|
|
224
|
+
uses: actions/checkout@v7
|
|
225
225
|
with:
|
|
226
226
|
fetch-depth: 0
|
|
227
227
|
token: \${{ secrets.GITHUB_TOKEN }}
|
|
228
228
|
|
|
229
229
|
- name: 📦 Setup Node.js
|
|
230
|
-
uses: actions/setup-node@
|
|
230
|
+
uses: actions/setup-node@v6
|
|
231
231
|
with:
|
|
232
232
|
node-version-file: .nvmrc
|
|
233
233
|
registry-url: 'https://registry.npmjs.org'
|
|
234
234
|
|
|
235
235
|
- name: 📦 Setup pnpm
|
|
236
|
-
uses: pnpm/action-setup@
|
|
236
|
+
uses: pnpm/action-setup@v6
|
|
237
237
|
with:
|
|
238
238
|
version: latest
|
|
239
239
|
|
|
240
240
|
- name: 📦 Restore dependencies cache
|
|
241
|
-
uses: actions/cache@
|
|
241
|
+
uses: actions/cache@v5
|
|
242
242
|
with:
|
|
243
243
|
path: |
|
|
244
244
|
~/.pnpm-store
|
|
@@ -32,7 +32,7 @@ export async function generateBiomeConfig(targetDir) {
|
|
|
32
32
|
// keys here forced consumers to run `biome migrate` before `biome check`
|
|
33
33
|
// would run at all.
|
|
34
34
|
const biomeConfig = {
|
|
35
|
-
$schema: 'https://biomejs.dev/schemas/2.
|
|
35
|
+
$schema: 'https://biomejs.dev/schemas/2.5.0/schema.json',
|
|
36
36
|
extends: ['@rtorcato/js-tooling/biome'],
|
|
37
37
|
};
|
|
38
38
|
await fs.writeJson(biomeConfigPath, biomeConfig, { spaces: 2 });
|
|
@@ -10,9 +10,9 @@ jobs:
|
|
|
10
10
|
permissions:
|
|
11
11
|
contents: write
|
|
12
12
|
steps:
|
|
13
|
-
- uses: actions/checkout@
|
|
14
|
-
- uses: pnpm/action-setup@
|
|
15
|
-
- uses: actions/setup-node@
|
|
13
|
+
- uses: actions/checkout@v7
|
|
14
|
+
- uses: pnpm/action-setup@v6
|
|
15
|
+
- uses: actions/setup-node@v6
|
|
16
16
|
with:
|
|
17
17
|
node-version: 22
|
|
18
18
|
cache: pnpm
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rtorcato/js-tooling",
|
|
3
|
-
"version": "2.19.
|
|
3
|
+
"version": "2.19.2",
|
|
4
4
|
"description": "JavaScript and TypeScript tooling for Node.js, React, Next.js, and Vitest.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"keywords": [
|
|
@@ -175,7 +175,8 @@
|
|
|
175
175
|
"./tests/ssr-safety": {
|
|
176
176
|
"types": "./tooling/tests/ssr-safety.d.mts",
|
|
177
177
|
"import": "./tooling/tests/ssr-safety.mjs"
|
|
178
|
-
}
|
|
178
|
+
},
|
|
179
|
+
"./package.json": "./package.json"
|
|
179
180
|
},
|
|
180
181
|
"dependencies": {
|
|
181
182
|
"chalk": "^5.6.2",
|
package/tooling/biome/biome.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$schema": "https://biomejs.dev/schemas/2.
|
|
2
|
+
"$schema": "https://biomejs.dev/schemas/2.5.0/schema.json",
|
|
3
3
|
"vcs": {
|
|
4
4
|
"enabled": false,
|
|
5
5
|
"clientKind": "git",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"linter": {
|
|
28
28
|
"enabled": true,
|
|
29
29
|
"rules": {
|
|
30
|
-
"
|
|
30
|
+
"preset": "recommended",
|
|
31
31
|
"style": {
|
|
32
32
|
"noInferrableTypes": "off"
|
|
33
33
|
},
|
|
@@ -51,8 +51,11 @@ export default {
|
|
|
51
51
|
changelogFile: 'CHANGELOG.md',
|
|
52
52
|
},
|
|
53
53
|
],
|
|
54
|
-
|
|
55
|
-
//
|
|
54
|
+
// npm publishing is opt-in via NPM_TOKEN: a repo that provides the token
|
|
55
|
+
// (e.g. js-tooling's own CI) publishes; one that doesn't (GitHub-releases
|
|
56
|
+
// only) gets a green release instead of an EINVALIDNPMTOKEN failure. The
|
|
57
|
+
// version in package.json is still bumped either way.
|
|
58
|
+
['@semantic-release/npm', { npmPublish: Boolean(process.env.NPM_TOKEN), pkgRoot: '.' }],
|
|
56
59
|
[
|
|
57
60
|
'@semantic-release/git',
|
|
58
61
|
{
|
|
@@ -52,8 +52,11 @@ export default {
|
|
|
52
52
|
changelogFile: 'CHANGELOG.md',
|
|
53
53
|
},
|
|
54
54
|
],
|
|
55
|
-
|
|
56
|
-
//
|
|
55
|
+
// npm publishing is opt-in via NPM_TOKEN: a repo that provides the token
|
|
56
|
+
// publishes; one that doesn't (GitLab releases only) gets a green release
|
|
57
|
+
// instead of an EINVALIDNPMTOKEN failure. The version in package.json is
|
|
58
|
+
// still bumped either way.
|
|
59
|
+
['@semantic-release/npm', { npmPublish: Boolean(process.env.NPM_TOKEN), pkgRoot: '.' }],
|
|
57
60
|
[
|
|
58
61
|
'@semantic-release/git',
|
|
59
62
|
{
|