nx-factory-cli 2.1.25 → 2.1.26
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/commands/add-app.d.ts.map +1 -1
- package/dist/commands/add-app.js +37 -8
- package/dist/commands/add-app.js.map +1 -1
- package/dist/commands/init.d.ts.map +1 -1
- package/dist/commands/init.js +51 -13
- package/dist/commands/init.js.map +1 -1
- package/dist/commands/migrate.d.ts +5 -0
- package/dist/commands/migrate.d.ts.map +1 -1
- package/dist/commands/migrate.js +316 -37
- package/dist/commands/migrate.js.map +1 -1
- package/dist/index.js +52 -9
- package/dist/index.js.map +1 -1
- package/dist/tsconfigs.d.ts +69 -35
- package/dist/tsconfigs.d.ts.map +1 -1
- package/dist/tsconfigs.js +247 -116
- package/dist/tsconfigs.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import { Command } from "commander";
|
|
3
|
-
import {
|
|
4
|
-
import { initCommand } from "./commands/init.js";
|
|
3
|
+
import { createRequire } from "node:module";
|
|
5
4
|
import { addAppCommand } from "./commands/add-app.js";
|
|
5
|
+
import { addAuthCommand } from "./commands/add-auth.js";
|
|
6
6
|
import { addComponentCommand } from "./commands/add-component.js";
|
|
7
|
-
import { removeComponentCommand } from "./commands/remove-component.js";
|
|
8
|
-
import { updateCommand } from "./commands/update.js";
|
|
9
|
-
import { listCommand } from "./commands/list.js";
|
|
10
|
-
import { doctorCommand } from "./commands/doctor.js";
|
|
11
7
|
import { addLibCommand } from "./commands/add-lib.js";
|
|
12
8
|
import { addStorybookCommand } from "./commands/add-storybook.js";
|
|
9
|
+
import { doctorCommand } from "./commands/doctor.js";
|
|
10
|
+
import { initCommand } from "./commands/init.js";
|
|
11
|
+
import { listCommand } from "./commands/list.js";
|
|
12
|
+
import { cleanupMigrationBackups, migrateCommand } from "./commands/migrate.js";
|
|
13
13
|
import { publishCommand } from "./commands/publish.js";
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
14
|
+
import { removeComponentCommand } from "./commands/remove-component.js";
|
|
15
|
+
import { updateCommand } from "./commands/update.js";
|
|
16
|
+
import { printBanner } from "./ui.js";
|
|
17
17
|
const _require = createRequire(import.meta.url);
|
|
18
18
|
const _pkg = _require("../package.json");
|
|
19
19
|
const program = new Command();
|
|
@@ -101,5 +101,48 @@ program
|
|
|
101
101
|
.option("-y, --yes", "Skip confirmation prompts")
|
|
102
102
|
.option("--dry-run", "Preview what would be changed without writing anything")
|
|
103
103
|
.action(migrateCommand);
|
|
104
|
+
program
|
|
105
|
+
.command("cleanup-backups")
|
|
106
|
+
.description("Delete all .migration-backup files left by a previous migrate run")
|
|
107
|
+
.option("--dry-run", "Preview which files would be deleted without deleting them")
|
|
108
|
+
.action(async (opts) => {
|
|
109
|
+
const { requireMonorepoRoot, MonorepoRootNotFoundError } = await import("./resolve-root.js");
|
|
110
|
+
const { printError, printSuccess, c } = await import("./ui.js");
|
|
111
|
+
let root;
|
|
112
|
+
try {
|
|
113
|
+
root = await requireMonorepoRoot();
|
|
114
|
+
}
|
|
115
|
+
catch (err) {
|
|
116
|
+
if (err instanceof MonorepoRootNotFoundError) {
|
|
117
|
+
printError({
|
|
118
|
+
title: "Could not find workspace root",
|
|
119
|
+
detail: String(err),
|
|
120
|
+
recovery: [{ label: "", cmd: "cd <workspace-root>" }],
|
|
121
|
+
});
|
|
122
|
+
}
|
|
123
|
+
else {
|
|
124
|
+
printError({
|
|
125
|
+
title: "Unexpected error",
|
|
126
|
+
detail: String(err),
|
|
127
|
+
recovery: [],
|
|
128
|
+
});
|
|
129
|
+
}
|
|
130
|
+
process.exit(1);
|
|
131
|
+
}
|
|
132
|
+
const count = await cleanupMigrationBackups(root, opts.dryRun);
|
|
133
|
+
if (count === 0) {
|
|
134
|
+
console.log(`\n ${c.green("✓")} No .migration-backup files found.\n`);
|
|
135
|
+
}
|
|
136
|
+
else if (opts.dryRun) {
|
|
137
|
+
console.log(`\n ${c.dim("○")} Would delete ${count} .migration-backup file(s). Run without --dry-run to apply.\n`);
|
|
138
|
+
}
|
|
139
|
+
else {
|
|
140
|
+
printSuccess({
|
|
141
|
+
title: `Deleted ${count} .migration-backup file(s)`,
|
|
142
|
+
commands: [],
|
|
143
|
+
tips: [],
|
|
144
|
+
});
|
|
145
|
+
}
|
|
146
|
+
});
|
|
104
147
|
program.parse();
|
|
105
148
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AACA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|
package/dist/tsconfigs.d.ts
CHANGED
|
@@ -1,54 +1,88 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* tsconfigs.ts — single source of truth for every tsconfig
|
|
3
|
-
*
|
|
4
|
-
*
|
|
5
|
-
*
|
|
6
|
-
*
|
|
7
|
-
*
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
*
|
|
11
|
-
*
|
|
12
|
-
*
|
|
13
|
-
*
|
|
14
|
-
*
|
|
15
|
-
*
|
|
16
|
-
*
|
|
17
|
-
*
|
|
18
|
-
*
|
|
19
|
-
*
|
|
20
|
-
*
|
|
21
|
-
*
|
|
22
|
-
*
|
|
23
|
-
*
|
|
24
|
-
*
|
|
25
|
-
*
|
|
26
|
-
*
|
|
27
|
-
*
|
|
28
|
-
*
|
|
29
|
-
*
|
|
30
|
-
*
|
|
31
|
-
*
|
|
32
|
-
*
|
|
2
|
+
* tsconfigs.ts — single source of truth for every tsconfig file the CLI writes.
|
|
3
|
+
*
|
|
4
|
+
* ── Architecture of the generated workspace ───────────────────────────────────
|
|
5
|
+
*
|
|
6
|
+
* The CLI scaffolds a `packages/typescript` workspace package at init time.
|
|
7
|
+
* It is a private, never-built package whose only purpose is to own and
|
|
8
|
+
* distribute the shared tsconfig presets for the whole monorepo.
|
|
9
|
+
*
|
|
10
|
+
* my-monorepo/
|
|
11
|
+
* ├── tsconfig.base.json ← strict settings + global paths (no module/resolution)
|
|
12
|
+
* ├── tsconfig.json ← solution file: references all packages + apps
|
|
13
|
+
* └── packages/
|
|
14
|
+
* └── typescript/ ← workspace package: @scope/typescript
|
|
15
|
+
* ├── package.json ← private: true, exports all tsconfig files
|
|
16
|
+
* ├── tsconfig.base.json ← re-exports root base (one hop)
|
|
17
|
+
* ├── tsconfig.internal.json ← ESNext + Bundler, noEmit — for source-only packages
|
|
18
|
+
* ├── tsconfig.package.json ← NodeNext + NodeNext, composite — for published packages
|
|
19
|
+
* ├── tsconfig.nextjs.json ← ESNext + Bundler, jsx:preserve, Next.js plugin
|
|
20
|
+
* ├── tsconfig.vite.json ← ESNext + Bundler, jsx:react-jsx
|
|
21
|
+
* ├── tsconfig.remix.json ← ESNext + Bundler, jsx:react-jsx
|
|
22
|
+
* └── tsconfig.expo.json ← ESNext + Bundler, jsx:react-native
|
|
23
|
+
*
|
|
24
|
+
* Packages and apps extend like this:
|
|
25
|
+
*
|
|
26
|
+
* packages/ui/tsconfig.json:
|
|
27
|
+
* { "extends": "@scope/typescript/tsconfig.internal.json" }
|
|
28
|
+
*
|
|
29
|
+
* apps/dashboard/tsconfig.json:
|
|
30
|
+
* { "extends": "@scope/typescript/tsconfig.nextjs.json" }
|
|
31
|
+
*
|
|
32
|
+
* ── Two strategies for packages ───────────────────────────────────────────────
|
|
33
|
+
*
|
|
34
|
+
* INTERNAL (private: true, never published):
|
|
35
|
+
* - noEmit: true — no dist/, no build script, no build step ever
|
|
36
|
+
* - Consumed via path alias: @scope/pkg → packages/pkg/index.ts (source)
|
|
37
|
+
* - ESNext + Bundler: the bundler (Vite/Next.js/esbuild) handles resolution
|
|
38
|
+
* at app build time, so no .js extensions needed in source imports
|
|
39
|
+
*
|
|
40
|
+
* PUBLIC (published to npm):
|
|
41
|
+
* - Emits to dist/ via tsc
|
|
42
|
+
* - NodeNext + NodeNext: Node.js ESM requires .js extensions in source
|
|
43
|
+
* - composite + incremental for Nx project reference caching
|
|
44
|
+
*
|
|
45
|
+
* ── The root tsconfig.base.json ───────────────────────────────────────────────
|
|
46
|
+
* Only holds: target, strict flags, esModuleInterop, isolatedModules, and
|
|
47
|
+
* the global paths map. Does NOT set module or moduleResolution — those
|
|
48
|
+
* belong in the per-preset files inside packages/typescript/.
|
|
33
49
|
*/
|
|
34
50
|
import type { PackageVisibility } from "./config.js";
|
|
35
51
|
export type { PackageVisibility };
|
|
52
|
+
export type AppFramework = "nextjs" | "vite" | "remix" | "expo";
|
|
36
53
|
export declare function rootTsConfigBase(scope: string): object;
|
|
54
|
+
/**
|
|
55
|
+
* Returns the package.json for the @scope/typescript workspace package.
|
|
56
|
+
* Private, never published. Its exports point at the tsconfig preset files
|
|
57
|
+
* so other packages can extend them by package name.
|
|
58
|
+
*/
|
|
59
|
+
export declare function typescriptPackageJson(scope: string): object;
|
|
60
|
+
/**
|
|
61
|
+
* Returns a map of filename → content for every file inside packages/typescript/.
|
|
62
|
+
* Written by `init` and regenerated by `migrate`.
|
|
63
|
+
*/
|
|
64
|
+
export declare function typescriptPresets(): Record<string, object>;
|
|
37
65
|
interface PackageTsConfigOptions {
|
|
38
66
|
scope: string;
|
|
39
67
|
pkgName: string;
|
|
40
68
|
visibility: PackageVisibility;
|
|
41
|
-
/** true for React
|
|
69
|
+
/** true for React packages — adds jsx:react-jsx and DOM lib */
|
|
42
70
|
react?: boolean;
|
|
43
|
-
/** Relative path from package dir to workspace root, default "../../" */
|
|
44
|
-
rootRelative?: string;
|
|
45
71
|
}
|
|
46
72
|
export declare function packageTsConfig(opts: PackageTsConfigOptions): object;
|
|
47
|
-
type AppFramework = "nextjs" | "vite" | "remix" | "expo";
|
|
48
73
|
interface AppTsConfigOptions {
|
|
49
74
|
scope: string;
|
|
50
75
|
framework: AppFramework;
|
|
51
76
|
hasSrcDir: boolean;
|
|
77
|
+
/**
|
|
78
|
+
* Whether packages/typescript/ exists in the workspace.
|
|
79
|
+
* Falls back to ../../tsconfig.base.json for pre-migration workspaces.
|
|
80
|
+
* Defaults to true — all new workspaces have it.
|
|
81
|
+
*/
|
|
82
|
+
typescriptPkgExists?: boolean;
|
|
52
83
|
}
|
|
53
84
|
export declare function appTsConfig(opts: AppTsConfigOptions): object;
|
|
85
|
+
export declare function rootTsConfigSolution(packages: string[], apps: string[]): object;
|
|
86
|
+
/** @deprecated Use typescriptPresets() instead */
|
|
87
|
+
export declare const toolingPresets: typeof typescriptPresets;
|
|
54
88
|
//# sourceMappingURL=tsconfigs.d.ts.map
|
package/dist/tsconfigs.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tsconfigs.d.ts","sourceRoot":"","sources":["../src/tsconfigs.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"tsconfigs.d.ts","sourceRoot":"","sources":["../src/tsconfigs.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgDG;AAEH,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,aAAa,CAAC;AACrD,YAAY,EAAE,iBAAiB,EAAE,CAAC;AAElC,MAAM,MAAM,YAAY,GAAG,QAAQ,GAAG,MAAM,GAAG,OAAO,GAAG,MAAM,CAAC;AAIhE,wBAAgB,gBAAgB,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAwBtD;AAID;;;;GAIG;AACH,wBAAgB,qBAAqB,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAiB3D;AAED;;;GAGG;AACH,wBAAgB,iBAAiB,IAAI,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CA8G1D;AAID,UAAU,sBAAsB;IAC/B,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,EAAE,MAAM,CAAC;IAChB,UAAU,EAAE,iBAAiB,CAAC;IAC9B,+DAA+D;IAC/D,KAAK,CAAC,EAAE,OAAO,CAAC;CAChB;AAED,wBAAgB,eAAe,CAAC,IAAI,EAAE,sBAAsB,GAAG,MAAM,CAuCpE;AAID,UAAU,kBAAkB;IAC3B,KAAK,EAAE,MAAM,CAAC;IACd,SAAS,EAAE,YAAY,CAAC;IACxB,SAAS,EAAE,OAAO,CAAC;IACnB;;;;OAIG;IACH,mBAAmB,CAAC,EAAE,OAAO,CAAC;CAC9B;AAED,wBAAgB,WAAW,CAAC,IAAI,EAAE,kBAAkB,GAAG,MAAM,CAyB5D;AAiBD,wBAAgB,oBAAoB,CACnC,QAAQ,EAAE,MAAM,EAAE,EAClB,IAAI,EAAE,MAAM,EAAE,GACZ,MAAM,CAUR;AAKD,kDAAkD;AAClD,eAAO,MAAM,cAAc,0BAAoB,CAAC"}
|