@adbayb/stack 2.35.0-next-4048dfb → 2.35.0-next-aea8352
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/index.js
CHANGED
|
@@ -192,18 +192,6 @@ const createBuildCommand = (program)=>{
|
|
|
192
192
|
});
|
|
193
193
|
};
|
|
194
194
|
|
|
195
|
-
const checkChangelog = async ()=>{
|
|
196
|
-
try {
|
|
197
|
-
return await helpers.exec("changeset status --since=origin/main");
|
|
198
|
-
} catch {
|
|
199
|
-
throw createError("changeset", [
|
|
200
|
-
"Some packages have been changed but no changelogs were found.",
|
|
201
|
-
"Run `pnpm stack release --log` to log your change(s).",
|
|
202
|
-
"If the change doesn't require a changelog, you can run `pnpm stack release --empty-log`."
|
|
203
|
-
].join("\n"));
|
|
204
|
-
}
|
|
205
|
-
};
|
|
206
|
-
|
|
207
195
|
const checkCode = eslint({
|
|
208
196
|
isFixMode: false
|
|
209
197
|
});
|
|
@@ -365,12 +353,6 @@ const createCheckCommand = (program)=>{
|
|
|
365
353
|
skip ({ filter }) {
|
|
366
354
|
return filter === "commit"; // No need to build if only commit is checked
|
|
367
355
|
}
|
|
368
|
-
}).task({
|
|
369
|
-
async handler () {
|
|
370
|
-
await checkChangelog();
|
|
371
|
-
},
|
|
372
|
-
label: label$4("Check changelog compliance"),
|
|
373
|
-
skip: ifFilterDefinedAndNotEqualTo("changelog")
|
|
374
356
|
}).task({
|
|
375
357
|
async handler () {
|
|
376
358
|
await checkDependency();
|
|
@@ -467,7 +449,7 @@ const PRESERVE_FILES = [
|
|
|
467
449
|
"node_modules"
|
|
468
450
|
];
|
|
469
451
|
|
|
470
|
-
var version = "2.35.0-next-
|
|
452
|
+
var version = "2.35.0-next-aea8352";
|
|
471
453
|
|
|
472
454
|
const createCreateCommand = (program)=>{
|
|
473
455
|
program.command({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adbayb/stack",
|
|
3
|
-
"version": "2.35.0-next-
|
|
3
|
+
"version": "2.35.0-next-aea8352",
|
|
4
4
|
"description": "My opinionated JavaScript-based toolchain",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"stack",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"@changesets/cli": "^2.31.0",
|
|
44
44
|
"@commitlint/cli": "^21.0.1",
|
|
45
45
|
"@commitlint/config-conventional": "^21.0.1",
|
|
46
|
-
"@eslint-react/eslint-plugin": "^5.
|
|
46
|
+
"@eslint-react/eslint-plugin": "^5.8.3",
|
|
47
47
|
"@eslint/compat": "^2.1.0",
|
|
48
48
|
"@stylistic/eslint-plugin": "^5.10.0",
|
|
49
49
|
"@vitest/eslint-plugin": "^1.6.17",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"eslint-import-resolver-typescript": "^4.4.4",
|
|
53
53
|
"eslint-plugin-depend": "^1.5.0",
|
|
54
54
|
"eslint-plugin-import-x": "^4.16.2",
|
|
55
|
-
"eslint-plugin-jsdoc": "^
|
|
55
|
+
"eslint-plugin-jsdoc": "^63.0.0",
|
|
56
56
|
"eslint-plugin-mdx": "^3.7.0",
|
|
57
57
|
"eslint-plugin-n": "^18.0.1",
|
|
58
58
|
"eslint-plugin-perfectionist": "^5.9.0",
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
"termost": "^1.9.0",
|
|
67
67
|
"turbo": "^2.9.14",
|
|
68
68
|
"typescript": "^6.0.3",
|
|
69
|
-
"typescript-eslint": "^8.59.
|
|
69
|
+
"typescript-eslint": "^8.59.4"
|
|
70
70
|
},
|
|
71
71
|
"devDependencies": {
|
|
72
72
|
"@types/node": "24.12.4",
|