@memberjunction/cli 6.1.0-edge.6 → 6.1.0-edge.7
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/dev/workspace/index.d.ts +9 -0
- package/dist/commands/dev/workspace/index.d.ts.map +1 -1
- package/dist/commands/dev/workspace/index.js +82 -6
- package/dist/commands/dev/workspace/index.js.map +1 -1
- package/dist/lib/dev-workspace/build.d.ts +155 -18
- package/dist/lib/dev-workspace/build.d.ts.map +1 -1
- package/dist/lib/dev-workspace/build.js +522 -39
- package/dist/lib/dev-workspace/build.js.map +1 -1
- package/dist/lib/dev-workspace/detect.d.ts +14 -1
- package/dist/lib/dev-workspace/detect.d.ts.map +1 -1
- package/dist/lib/dev-workspace/detect.js +60 -3
- package/dist/lib/dev-workspace/detect.js.map +1 -1
- package/dist/lib/dev-workspace/doctor.d.ts +17 -1
- package/dist/lib/dev-workspace/doctor.d.ts.map +1 -1
- package/dist/lib/dev-workspace/doctor.js +92 -1
- package/dist/lib/dev-workspace/doctor.js.map +1 -1
- package/dist/lib/dev-workspace/types.d.ts +185 -2
- package/dist/lib/dev-workspace/types.d.ts.map +1 -1
- package/dist/lib/dev-workspace/usage.d.ts.map +1 -1
- package/dist/lib/dev-workspace/usage.js +5 -3
- package/dist/lib/dev-workspace/usage.js.map +1 -1
- package/oclif.manifest.json +819 -812
- package/package.json +22 -22
|
@@ -53,6 +53,116 @@ export interface MemberPackageInfo {
|
|
|
53
53
|
RelPath: string;
|
|
54
54
|
PackageJson: MemberPackageJson;
|
|
55
55
|
}
|
|
56
|
+
/** One `packages.client[]` / `server[]` / `shared[]` entry in a member's committed `mj-app.json`. */
|
|
57
|
+
export interface MjAppPackageEntry {
|
|
58
|
+
name: string;
|
|
59
|
+
/**
|
|
60
|
+
* One of the manifest schema's seven roles (`bootstrap`, `actions`, `engine`, `provider`, `module`,
|
|
61
|
+
* `components`, `library`). Read for reporting only — the host's client emitter applies NO role
|
|
62
|
+
* filter, so role never decides whether a package must be linked. See `readShellImportedEntries`.
|
|
63
|
+
*/
|
|
64
|
+
role?: string;
|
|
65
|
+
startupExport?: string;
|
|
66
|
+
}
|
|
67
|
+
/**
|
|
68
|
+
* The subset of a member's committed `mj-app.json` this generator reads.
|
|
69
|
+
*
|
|
70
|
+
* This is an Open App's OWN declaration of what it ships — tracked in its repo, and therefore
|
|
71
|
+
* stable in a way the host's `mj.config.cjs` `dynamicPackages` is not (that file is rewritten by
|
|
72
|
+
* `mj app install`/`enable`/`disable`). Reading the app's declaration rather than the host's
|
|
73
|
+
* registration is also what keeps the linking half independent of the registration half, per the
|
|
74
|
+
* axiom in `guides/OPEN_APP_WORKSPACE_LINKING_SPEC.md` (§17): a workspace links an app whether or
|
|
75
|
+
* not a host has registered it.
|
|
76
|
+
*/
|
|
77
|
+
export interface MjAppJson {
|
|
78
|
+
name?: string;
|
|
79
|
+
packages?: {
|
|
80
|
+
client?: MjAppPackageEntry[];
|
|
81
|
+
server?: MjAppPackageEntry[];
|
|
82
|
+
shared?: MjAppPackageEntry[];
|
|
83
|
+
};
|
|
84
|
+
}
|
|
85
|
+
/**
|
|
86
|
+
* A client-side package an Open App member declares in its own `mj-app.json`.
|
|
87
|
+
*
|
|
88
|
+
* Collected from `packages.client[]` AND `packages.shared[]`, at every role, because that is exactly
|
|
89
|
+
* the set the host emits into `dynamicPackages.client` and therefore the set an app shell imports
|
|
90
|
+
* without ever declaring. `packages.server[]` is excluded: the host routes it to
|
|
91
|
+
* `dynamicPackages.server`, a Node process that resolves importer-relative, not from the vite root.
|
|
92
|
+
*/
|
|
93
|
+
export interface OpenAppClientPackage {
|
|
94
|
+
/** Package name, e.g. `@mj-biz-apps/caliber-ng`. */
|
|
95
|
+
Package: string;
|
|
96
|
+
/** Member repo directory whose `mj-app.json` declares it. */
|
|
97
|
+
Repo: string;
|
|
98
|
+
/** Whether a workspace member actually provides the package — a declaration can outrun the tree. */
|
|
99
|
+
Provided: boolean;
|
|
100
|
+
}
|
|
101
|
+
/** An Angular app shell the workspace enumerates, with everything it declares. */
|
|
102
|
+
export interface WorkspaceShell {
|
|
103
|
+
/** Package name from the shell's own package.json, e.g. `mj_explorer`. */
|
|
104
|
+
Name: string;
|
|
105
|
+
/** Package directory relative to its member repo root. */
|
|
106
|
+
RelPath: string;
|
|
107
|
+
/** Member repo that provides it. */
|
|
108
|
+
Repo: string;
|
|
109
|
+
/** Every name in the shell's `dependencies` + `devDependencies` — what it can already resolve. */
|
|
110
|
+
Declares: string[];
|
|
111
|
+
}
|
|
112
|
+
/**
|
|
113
|
+
* A peer an Open App client-side package needs that a given shell will NOT resolve.
|
|
114
|
+
*
|
|
115
|
+
* Reported per shell rather than once: a workspace can enumerate several shells, and a peer one
|
|
116
|
+
* shell happens to declare must not mask another shell's gap. Measured on the real workspace, the
|
|
117
|
+
* shell-agnostic form of this rule produced a false negative — a demo app declaring
|
|
118
|
+
* `@angular/elements` hid MJExplorer's real gap (#4364).
|
|
119
|
+
*/
|
|
120
|
+
export interface ShellPeerGap {
|
|
121
|
+
/** The shell that will fail to resolve it. */
|
|
122
|
+
Shell: string;
|
|
123
|
+
/** The client-side package whose `peerDependencies` names it. */
|
|
124
|
+
Package: string;
|
|
125
|
+
/** The unmet peer, e.g. `@angular/elements`. */
|
|
126
|
+
Peer: string;
|
|
127
|
+
/** The range the client package asks for. */
|
|
128
|
+
Range: string;
|
|
129
|
+
/** Exact version the parent's assembled overrides already pin, or null when nothing pins it. */
|
|
130
|
+
Pin: string | null;
|
|
131
|
+
}
|
|
132
|
+
/**
|
|
133
|
+
* One client-side package that more than one member declares.
|
|
134
|
+
*
|
|
135
|
+
* Reported rather than resolved silently, the way {@link DuplicateFamilyPackage} already is: which
|
|
136
|
+
* member the parent links is decided by repo sort order, and that is an ambiguity the developer
|
|
137
|
+
* should be told about, not a fact the generator should keep to itself.
|
|
138
|
+
*/
|
|
139
|
+
export interface DuplicateClientPackage {
|
|
140
|
+
Package: string;
|
|
141
|
+
/** Every member repo whose `mj-app.json` declares it, in sort order — the first is the one linked. */
|
|
142
|
+
Repos: string[];
|
|
143
|
+
}
|
|
144
|
+
/** Which declared client-side packages are linked at the parent root. */
|
|
145
|
+
export interface ClientPackageCensus {
|
|
146
|
+
Entries: Array<{
|
|
147
|
+
Package: string;
|
|
148
|
+
Repo: string;
|
|
149
|
+
Provided: boolean;
|
|
150
|
+
Linked: boolean;
|
|
151
|
+
}>;
|
|
152
|
+
/**
|
|
153
|
+
* Members whose `mj-app.json` could not be parsed, so their declarations are unknown.
|
|
154
|
+
*
|
|
155
|
+
* Carried rather than thrown because `doctor` diagnoses where `generate` writes: aborting the
|
|
156
|
+
* whole report over one unreadable file costs the nine checks that have nothing to do with it —
|
|
157
|
+
* the one-copy census and standalone-install detection especially, which are the reason someone
|
|
158
|
+
* runs doctor in the first place. `generate` still refuses outright, which is correct: it emits a
|
|
159
|
+
* manifest and must not do so from a declaration it could not read.
|
|
160
|
+
*/
|
|
161
|
+
Unreadable: Array<{
|
|
162
|
+
Repo: string;
|
|
163
|
+
Message: string;
|
|
164
|
+
}>;
|
|
165
|
+
}
|
|
56
166
|
/** One dependency resolution read from a member's committed lockfile. */
|
|
57
167
|
export interface ResolvedLockEntry {
|
|
58
168
|
Name: string;
|
|
@@ -125,10 +235,36 @@ export interface CandidateRepo {
|
|
|
125
235
|
Packages: MemberPackageInfo[];
|
|
126
236
|
/** Positive globs whose shape the expander does not support — reported by the command, never silent. */
|
|
127
237
|
UnsupportedGlobs: string[];
|
|
238
|
+
/**
|
|
239
|
+
* App-shell globs admitted for THIS member by `--apps <member>=<glob>[,<glob>]` (e.g. `apps/API`,
|
|
240
|
+
* `apps/MJAPI`): the runnable hosts of a repo like Skip-Brain, which the packages-rooted rule drops
|
|
241
|
+
* by default because shell names collide across repos (#3795). Admitted explicitly, per member, and
|
|
242
|
+
* checked for name collisions against every other workspace package before the yaml is written.
|
|
243
|
+
* Absent or empty unless the user asked.
|
|
244
|
+
*/
|
|
245
|
+
AppGlobs?: string[];
|
|
128
246
|
/** The member's committed lockfile data, an unsupported-format marker, or null when the repo commits none. */
|
|
129
247
|
Lockfile: MemberLockfile | UnsupportedLockfile | null;
|
|
130
248
|
/** Raw contents of the repo's root `turbo.json`, or null when absent. */
|
|
131
249
|
TurboJson: string | null;
|
|
250
|
+
/**
|
|
251
|
+
* Why the member's `mj-app.json` could not be parsed, or null when it parsed (or is absent).
|
|
252
|
+
*
|
|
253
|
+
* Detection walks EVERY sibling directory, before the candidate filter and long before
|
|
254
|
+
* `--exclude` is applied, so throwing here would let one broken file in a repo the user
|
|
255
|
+
* deliberately excludes abort the whole command. The failure is carried instead and raised by
|
|
256
|
+
* whoever actually reads the declaration, for members it actually reads.
|
|
257
|
+
*
|
|
258
|
+
* A broken root `package.json` still throws in `LoadRepo`: that one means the directory is not a
|
|
259
|
+
* loadable repo at all, which is a different statement.
|
|
260
|
+
*/
|
|
261
|
+
MjAppJsonError: string | null;
|
|
262
|
+
/**
|
|
263
|
+
* The member's committed `mj-app.json`, or null when it ships none (a non-Open-App member such
|
|
264
|
+
* as the MJ monorepo). Its `packages.client[]` is the only registration-independent record of
|
|
265
|
+
* which packages an app shell will be asked to import.
|
|
266
|
+
*/
|
|
267
|
+
MjAppJson: MjAppJson | null;
|
|
132
268
|
/**
|
|
133
269
|
* The member's own workspace globs, relative to its repo root: the `packages:`
|
|
134
270
|
* list of its `pnpm-workspace.yaml` with positives filtered to packages-rooted
|
|
@@ -159,6 +295,22 @@ export interface DuplicateFamilyPackage {
|
|
|
159
295
|
Package: string;
|
|
160
296
|
Repos: string[];
|
|
161
297
|
}
|
|
298
|
+
/**
|
|
299
|
+
* One consumer-scoped `link:` override that keeps a member's OWN copy of a
|
|
300
|
+
* duplicated package name in front of that member's own consumers (every
|
|
301
|
+
* MJ-based app repo ships a `mj_generatedentities` / `mj_generatedactions`, so
|
|
302
|
+
* two such repos in one workspace always collide on those names).
|
|
303
|
+
*/
|
|
304
|
+
export interface DuplicateProviderLink {
|
|
305
|
+
/** The consuming package's name (the `parent` of pnpm's `parent>child` override selector). */
|
|
306
|
+
Consumer: string;
|
|
307
|
+
/** The duplicated package name (the `child`). */
|
|
308
|
+
Package: string;
|
|
309
|
+
/** The override value: `link:<member>/<provider relPath>`, root-relative. */
|
|
310
|
+
Target: string;
|
|
311
|
+
/** The member whose copy this link keeps in front of the consumer. */
|
|
312
|
+
Repo: string;
|
|
313
|
+
}
|
|
162
314
|
/** Everything the parent-manifest assembly decided — the command reports ALL of it, never silently. */
|
|
163
315
|
export interface ParentManifestReport {
|
|
164
316
|
/** Lockfile-derived override entries emitted (EXACT versions; per-major `name@^N` keys for multi-major names). */
|
|
@@ -190,6 +342,19 @@ export interface ParentManifestReport {
|
|
|
190
342
|
FamilyOverrideCount: number;
|
|
191
343
|
/** Package names provided by more than one member. */
|
|
192
344
|
DuplicateFamilyPackages: DuplicateFamilyPackage[];
|
|
345
|
+
/** Consumer-scoped `link:` overrides emitted so each providing member's own consumers get its own copy. */
|
|
346
|
+
DuplicateProviderLinks: DuplicateProviderLink[];
|
|
347
|
+
/**
|
|
348
|
+
* Consumers of a duplicated name that could NOT be given a scoped link: the consumer's own name
|
|
349
|
+
* is duplicated too (a `parent>child` selector would hit every copy), or the consumer lives in a
|
|
350
|
+
* member that provides no copy (it gets whichever provider pnpm picks — sort order).
|
|
351
|
+
*/
|
|
352
|
+
UnlinkedDuplicateConsumers: Array<{
|
|
353
|
+
Consumer: string;
|
|
354
|
+
Package: string;
|
|
355
|
+
Repo: string;
|
|
356
|
+
Reason: 'ambiguous-consumer' | 'no-own-copy';
|
|
357
|
+
}>;
|
|
193
358
|
/** `@types/*` devDependencies excluded from the union (duplicate @types = nominal-type break). */
|
|
194
359
|
SkippedTypesDevDeps: string[];
|
|
195
360
|
/** `workspace:` devDependency specifiers on packages NO member provides — dropped. */
|
|
@@ -197,12 +362,30 @@ export interface ParentManifestReport {
|
|
|
197
362
|
Package: string;
|
|
198
363
|
Repo: string;
|
|
199
364
|
}>;
|
|
200
|
-
/**
|
|
365
|
+
/** Entries a stronger layer displaced: a member override, a patched-package pin, or a family workspace:* override. */
|
|
201
366
|
SupersededPins: string[];
|
|
367
|
+
/** Override keys pinned to the exact version a member's patch is keyed to (a patch applies to that version only). */
|
|
368
|
+
PatchPins: string[];
|
|
369
|
+
/**
|
|
370
|
+
* Open App client-side packages found in members' `mj-app.json`. Entries with
|
|
371
|
+
* `Provided: false` are NOT registered — the declaration names a package no member ships — and
|
|
372
|
+
* the command warns on each.
|
|
373
|
+
*/
|
|
374
|
+
OpenAppClientPackages: OpenAppClientPackage[];
|
|
375
|
+
/** Per-shell unmet peers of the registered client packages — reported, never auto-added. */
|
|
376
|
+
ShellPeerGaps: ShellPeerGap[];
|
|
377
|
+
/** Client-side packages more than one member declares; the first by repo sort order is linked. */
|
|
378
|
+
DuplicateClientPackages: DuplicateClientPackage[];
|
|
202
379
|
}
|
|
203
|
-
/** Result of building the parent `package.json
|
|
380
|
+
/** Result of building the parent `package.json` and the pnpm settings that accompany it. */
|
|
204
381
|
export interface RootPackageJsonResult {
|
|
205
382
|
Content: string;
|
|
383
|
+
/**
|
|
384
|
+
* The pnpm settings for `pnpm-workspace.yaml` (peer switches, peer rules,
|
|
385
|
+
* overrides, patches, extensions). Kept OUT of the manifest: pnpm 10 ignores a
|
|
386
|
+
* `pnpm` block at a workspace root and reads these only from the workspace yaml.
|
|
387
|
+
*/
|
|
388
|
+
PnpmSettings: Record<string, unknown>;
|
|
206
389
|
Conflicts: DevDepConflict[];
|
|
207
390
|
/** Which member repo (or fallback) supplied the pnpm `packageManager` pin. */
|
|
208
391
|
PinSource: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/lib/dev-workspace/types.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/lib/dev-workspace/types.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"usage.d.ts","sourceRoot":"","sources":["../../../src/lib/dev-workspace/usage.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;GAeG;AACH,OAAO,EAAqB,KAAK,WAAW,EAAE,MAAM,0BAA0B,CAAC;AAmB/E,oDAAoD;AACpD,eAAO,MAAM,mBAAmB,EAAE,
|
|
1
|
+
{"version":3,"file":"usage.d.ts","sourceRoot":"","sources":["../../../src/lib/dev-workspace/usage.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;GAeG;AACH,OAAO,EAAqB,KAAK,WAAW,EAAE,MAAM,0BAA0B,CAAC;AAmB/E,oDAAoD;AACpD,eAAO,MAAM,mBAAmB,EAAE,WAwDjC,CAAC;AAEF,kEAAkE;AAClE,eAAO,MAAM,0BAA0B,EAAE,WAmBxC,CAAC;AAEF,wEAAwE;AACxE,eAAO,MAAM,0BAA0B,EAAE,WA2BxC,CAAC;AAEF,yDAAyD;AACzD,eAAO,MAAM,yBAAyB,EAAE,WA2BvC,CAAC;AAEF,yFAAyF;AACzF,eAAO,MAAM,gBAAgB,EAAE,SAAS,WAAW,EAKlD,CAAC;AAEF,6FAA6F;AAC7F,wBAAgB,yBAAyB,IAAI,IAAI,CAIhD"}
|
|
@@ -42,10 +42,12 @@ export const DEV_WORKSPACE_USAGE = {
|
|
|
42
42
|
`to drop one. Existing files are NEVER overwritten silently — the run refuses unless --force, which keeps a ` +
|
|
43
43
|
`<name>.bak copy of each. Workspace globs cover each member's repo root plus the packages-rooted globs of the ` +
|
|
44
44
|
`member's own pnpm-workspace.yaml (packages/* when it has none) — never apps/*, ` +
|
|
45
|
-
`because app-shell names collide across repos. The generated
|
|
46
|
-
`config would otherwise lose at a workspace root
|
|
45
|
+
`because app-shell names collide across repos. The generated pnpm-workspace.yaml ABSORBS what each member's own ` +
|
|
46
|
+
`config would otherwise lose at a workspace root (pnpm 10 reads settings only from that file, never from a ` +
|
|
47
|
+
`package.json#pnpm block): member pnpm.overrides/patchedDependencies/packageExtensions/` +
|
|
47
48
|
`peerDependencyRules are hoisted (patch paths re-rooted to <member>/...); every member-provided package name gets ` +
|
|
48
|
-
`a workspace:* override so local source always beats registry copies;
|
|
49
|
+
`a workspace:* override so local source always beats registry copies; a patched package is pinned to the exact ` +
|
|
50
|
+
`version its patch is keyed to (a patch applies to that version only); and overrides pin every direct ` +
|
|
49
51
|
`dependency of each member's importers (plus every @types/* at any depth) to the member's COMMITTED lockfile ` +
|
|
50
52
|
`resolution — EXACT versions, with per-major override selectors (name@^N) when the committed graphs hold more ` +
|
|
51
53
|
`than one major of a name — pure file derivation, no network (unsupported lockfile formats are warned about ` +
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"usage.js","sourceRoot":"","sources":["../../../src/lib/dev-workspace/usage.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;GAeG;AACH,OAAO,EAAE,iBAAiB,EAAoB,MAAM,0BAA0B,CAAC;AAC/E,OAAO,EAAE,aAAa,EAAE,iBAAiB,EAAE,MAAM,YAAY,CAAC;AAC9D,OAAO,EAAE,qBAAqB,EAAE,MAAM,eAAe,CAAC;AACtD,OAAO,EAAE,kBAAkB,EAAE,oBAAoB,EAAE,MAAM,YAAY,CAAC;AAEtE,6FAA6F;AAC7F,MAAM,eAAe,GACnB,+GAA+G;IAC/G,+GAA+G;IAC/G,mFAAmF,qBAAqB,QAAQ;IAChH,2DAA2D,CAAC;AAE9D,yCAAyC;AACzC,MAAM,QAAQ,GAAG;IACf,IAAI,EAAE,OAAO;IACb,IAAI,EAAE,QAAQ;IACd,WAAW,EAAE,iEAAiE,qBAAqB,gCAAgC;CACpI,CAAC;AAEF,oDAAoD;AACpD,MAAM,CAAC,MAAM,mBAAmB,GAAgB;IAC9C,MAAM,EAAE,KAAK;IACb,OAAO,EAAE,eAAe;IACxB,OAAO,EAAE,oFAAoF;IAC7F,WAAW,EACT,UAAU,oBAAoB,CAAC,IAAI,CAAC,IAAI,CAAC,aAAa,kBAAkB,yCAAyC;QACjH,yGAAyG;QACzG,4GAA4G;QAC5G,gHAAgH;QAChH,iHAAiH;QACjH,6GAA6G;QAC7G,+GAA+G;QAC/G,iFAAiF;QACjF,iHAAiH;QACjH
|
|
1
|
+
{"version":3,"file":"usage.js","sourceRoot":"","sources":["../../../src/lib/dev-workspace/usage.ts"],"names":[],"mappings":"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"}
|