@adbayb/stack 2.40.0-next-f1351a6 → 2.40.0-next-d505d35
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/configs/oxfmt.d.ts +1 -4
- package/dist/configs/oxlint.d.ts +1 -4
- package/dist/index.js +3 -2
- package/package.json +3 -3
- package/templates/multi-projects/package.json +1 -1
- package/templates/multi-projects/pnpm-workspace.yaml +6 -4
- package/templates/single-project/package.json +1 -1
- package/templates/single-project/pnpm-workspace.yaml +6 -4
- package/templates/multi-projects/.nvmrc +0 -1
- package/templates/single-project/.nvmrc +0 -1
package/dist/configs/oxfmt.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { OxfmtConfig } from "oxfmt";
|
|
2
|
-
|
|
3
2
|
//#region configs/oxfmt/index.d.ts
|
|
4
3
|
declare const config: {
|
|
5
4
|
arrowParens: "always";
|
|
@@ -28,8 +27,6 @@ declare const config: {
|
|
|
28
27
|
useTabs: true;
|
|
29
28
|
vueIndentScriptAndStyle: false;
|
|
30
29
|
};
|
|
31
|
-
declare const createConfig: ({
|
|
32
|
-
overrides
|
|
33
|
-
}: Required<Pick<OxfmtConfig, "overrides">>) => OxfmtConfig;
|
|
30
|
+
declare const createConfig: ({ overrides }: Required<Pick<OxfmtConfig, "overrides">>) => OxfmtConfig;
|
|
34
31
|
//#endregion
|
|
35
32
|
export { createConfig, config as default };
|
package/dist/configs/oxlint.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { OxlintConfig } from "oxlint";
|
|
2
|
-
|
|
3
2
|
//#region configs/oxlint/index.d.ts
|
|
4
3
|
declare const config: {
|
|
5
4
|
categories: {
|
|
@@ -255,8 +254,6 @@ declare const config: {
|
|
|
255
254
|
"unicorn/no-useless-undefined": "off";
|
|
256
255
|
};
|
|
257
256
|
};
|
|
258
|
-
declare const createConfig: ({
|
|
259
|
-
ignorePatterns
|
|
260
|
-
}: Required<Pick<OxlintConfig, "ignorePatterns">>) => OxlintConfig;
|
|
257
|
+
declare const createConfig: ({ ignorePatterns }: Required<Pick<OxlintConfig, "ignorePatterns">>) => OxlintConfig;
|
|
261
258
|
//#endregion
|
|
262
259
|
export { createConfig, config as default };
|
package/dist/index.js
CHANGED
|
@@ -442,7 +442,7 @@ const PRESERVE_FILES = ["node_modules"];
|
|
|
442
442
|
|
|
443
443
|
//#endregion
|
|
444
444
|
//#region package.json
|
|
445
|
-
var version = "2.40.0-next-
|
|
445
|
+
var version = "2.40.0-next-d505d35";
|
|
446
446
|
|
|
447
447
|
//#endregion
|
|
448
448
|
//#region src/commands/create.ts
|
|
@@ -731,7 +731,8 @@ const createInstallCommand = (program) => {
|
|
|
731
731
|
}).task({
|
|
732
732
|
label: label("Install `git.pre-commit` hook"),
|
|
733
733
|
async handler() {
|
|
734
|
-
|
|
734
|
+
const stackCommand = getStackCommand(`fix $(node -e 'console.log(require("child_process").execSync("git status --porcelain", {encoding: "utf8"}).split(/${String.raw`\n|\r\n`}/).filter(Boolean).map(item => item.split(" ").at(-1)).join(" "))')`);
|
|
735
|
+
await installGitHook("pre-commit", `${stackCommand} && git add -A`);
|
|
735
736
|
}
|
|
736
737
|
}).task({
|
|
737
738
|
label: label("Install `git.commit-msg` hook"),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adbayb/stack",
|
|
3
|
-
"version": "2.40.0-next-
|
|
3
|
+
"version": "2.40.0-next-d505d35",
|
|
4
4
|
"description": "My opinionated JavaScript-based toolchain",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"development",
|
|
@@ -62,12 +62,12 @@
|
|
|
62
62
|
"oxlint": "^1.75.0",
|
|
63
63
|
"oxlint-tsgolint": "^7.0.2001",
|
|
64
64
|
"termost": "^1.9.1",
|
|
65
|
-
"turbo": "^2.10.
|
|
65
|
+
"turbo": "^2.10.7",
|
|
66
66
|
"typescript": "^6.0.3"
|
|
67
67
|
},
|
|
68
68
|
"devDependencies": {
|
|
69
69
|
"@types/node": "24.13.3",
|
|
70
|
-
"quickbundle": "3.
|
|
70
|
+
"quickbundle": "3.1.0"
|
|
71
71
|
},
|
|
72
72
|
"scripts": {
|
|
73
73
|
"build": "quickbundle build",
|
|
@@ -1,10 +1,14 @@
|
|
|
1
|
-
minimumReleaseAgeExclude:
|
|
2
|
-
- "@adbayb/*"
|
|
3
1
|
packages:
|
|
4
2
|
- "applications/*"
|
|
5
3
|
- "examples/*"
|
|
6
4
|
- "libraries/*"
|
|
7
5
|
- "tools/*"
|
|
6
|
+
saveExact: true
|
|
7
|
+
verifyDepsBeforeRun: "warn"
|
|
8
|
+
update:
|
|
9
|
+
githubActions: true
|
|
10
|
+
minimumReleaseAgeExclude:
|
|
11
|
+
- "@adbayb/*"
|
|
8
12
|
publicHoistPattern:
|
|
9
13
|
- "*changesets*"
|
|
10
14
|
- "*commitlint*"
|
|
@@ -13,5 +17,3 @@ publicHoistPattern:
|
|
|
13
17
|
- "*turbo*"
|
|
14
18
|
- "*typescript*"
|
|
15
19
|
- "*types*"
|
|
16
|
-
saveExact: true
|
|
17
|
-
verifyDepsBeforeRun: "warn"
|
|
@@ -1,9 +1,13 @@
|
|
|
1
|
-
minimumReleaseAgeExclude:
|
|
2
|
-
- "@adbayb/*"
|
|
3
1
|
packages:
|
|
4
2
|
- "examples/*"
|
|
5
3
|
- "tools/*"
|
|
6
4
|
- "{{projectName}}"
|
|
5
|
+
saveExact: true
|
|
6
|
+
verifyDepsBeforeRun: "warn"
|
|
7
|
+
update:
|
|
8
|
+
githubActions: true
|
|
9
|
+
minimumReleaseAgeExclude:
|
|
10
|
+
- "@adbayb/*"
|
|
7
11
|
publicHoistPattern:
|
|
8
12
|
- "*changesets*"
|
|
9
13
|
- "*commitlint*"
|
|
@@ -12,5 +16,3 @@ publicHoistPattern:
|
|
|
12
16
|
- "*turbo*"
|
|
13
17
|
- "*typescript*"
|
|
14
18
|
- "*types*"
|
|
15
|
-
saveExact: true
|
|
16
|
-
verifyDepsBeforeRun: "warn"
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{{nodeVersion}}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{{nodeVersion}}
|