@abgov/nx-adsp 12.22.0 → 13.0.0-beta.1
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abgov/nx-adsp",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "13.0.0-beta.1",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"description": "Government of Alberta - Nx plugin for ADSP apps.",
|
|
@@ -12,12 +12,12 @@
|
|
|
12
12
|
"peerDependencies": {
|
|
13
13
|
"@abgov/nx-oc": "^12.3.0",
|
|
14
14
|
"@nx-dotnet/core": "^3.0.0",
|
|
15
|
-
"@nx/angular": "^
|
|
16
|
-
"@nx/devkit": "^
|
|
17
|
-
"@nx/eslint": "^
|
|
18
|
-
"@nx/express": "^
|
|
19
|
-
"@nx/react": "^
|
|
20
|
-
"@nx/vue": "^
|
|
15
|
+
"@nx/angular": "^23.0.0",
|
|
16
|
+
"@nx/devkit": "^23.0.0",
|
|
17
|
+
"@nx/eslint": "^23.0.0",
|
|
18
|
+
"@nx/express": "^23.0.0",
|
|
19
|
+
"@nx/react": "^23.0.0",
|
|
20
|
+
"@nx/vue": "^23.0.0",
|
|
21
21
|
"tslib": "^2.0.0"
|
|
22
22
|
},
|
|
23
23
|
"peerDependenciesMeta": {
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
// Nx 23 exposes `@nx/angular/generators` only via its package `exports` map.
|
|
2
|
+
// This workspace compiles with `moduleResolution: "node"` (classic), which does
|
|
3
|
+
// not read `exports` maps, so TypeScript cannot locate the types even though the
|
|
4
|
+
// module resolves correctly at runtime. This thin ambient declaration types the
|
|
5
|
+
// single symbol we consume (`applicationGenerator`) until the workspace moves to
|
|
6
|
+
// `moduleResolution: "bundler"`/`"node16"`.
|
|
7
|
+
declare module '@nx/angular/generators' {
|
|
8
|
+
import type { Tree } from '@nx/devkit';
|
|
9
|
+
|
|
10
|
+
export function applicationGenerator(
|
|
11
|
+
tree: Tree,
|
|
12
|
+
options: Record<string, unknown>
|
|
13
|
+
): Promise<void>;
|
|
14
|
+
}
|