@elliemae/pui-cli 9.0.0-next.24 → 9.0.0-next.25
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/nx.json +97 -0
- package/package.json +6 -4
package/nx.json
ADDED
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "./node_modules/nx/schemas/nx-schema.json",
|
|
3
|
+
"targetDependencies": {
|
|
4
|
+
"build": [
|
|
5
|
+
{
|
|
6
|
+
"target": "build",
|
|
7
|
+
"projects": "dependencies"
|
|
8
|
+
}
|
|
9
|
+
],
|
|
10
|
+
"test": [
|
|
11
|
+
{
|
|
12
|
+
"target": "build",
|
|
13
|
+
"projects": "dependencies"
|
|
14
|
+
}
|
|
15
|
+
],
|
|
16
|
+
"dts": [
|
|
17
|
+
{
|
|
18
|
+
"target": "dts",
|
|
19
|
+
"projects": "dependencies"
|
|
20
|
+
}
|
|
21
|
+
],
|
|
22
|
+
"lint": [
|
|
23
|
+
{
|
|
24
|
+
"target": "dts",
|
|
25
|
+
"projects": "dependencies"
|
|
26
|
+
}
|
|
27
|
+
],
|
|
28
|
+
"dev": [
|
|
29
|
+
{
|
|
30
|
+
"target": "dev",
|
|
31
|
+
"projects": "dependencies"
|
|
32
|
+
}
|
|
33
|
+
],
|
|
34
|
+
"storybook:start": [
|
|
35
|
+
{
|
|
36
|
+
"target": "build",
|
|
37
|
+
"projects": "dependencies"
|
|
38
|
+
}
|
|
39
|
+
],
|
|
40
|
+
"storybook:build": [
|
|
41
|
+
{
|
|
42
|
+
"target": "build",
|
|
43
|
+
"projects": "dependencies"
|
|
44
|
+
}
|
|
45
|
+
],
|
|
46
|
+
"prepare": [
|
|
47
|
+
{
|
|
48
|
+
"target": "prepare",
|
|
49
|
+
"projects": "dependencies"
|
|
50
|
+
}
|
|
51
|
+
],
|
|
52
|
+
"package": [
|
|
53
|
+
{
|
|
54
|
+
"target": "package",
|
|
55
|
+
"projects": "dependencies"
|
|
56
|
+
}
|
|
57
|
+
]
|
|
58
|
+
},
|
|
59
|
+
"targetDefaults": {
|
|
60
|
+
"postinstall": {
|
|
61
|
+
"cache": true
|
|
62
|
+
},
|
|
63
|
+
"build": {
|
|
64
|
+
"cache": true
|
|
65
|
+
},
|
|
66
|
+
"dev": {
|
|
67
|
+
"cache": true
|
|
68
|
+
},
|
|
69
|
+
"dev:project": {
|
|
70
|
+
"cache": true
|
|
71
|
+
},
|
|
72
|
+
"test": {
|
|
73
|
+
"cache": true
|
|
74
|
+
},
|
|
75
|
+
"lint": {
|
|
76
|
+
"cache": true
|
|
77
|
+
},
|
|
78
|
+
"dts": {
|
|
79
|
+
"cache": true
|
|
80
|
+
},
|
|
81
|
+
"storybook:start": {
|
|
82
|
+
"cache": true
|
|
83
|
+
},
|
|
84
|
+
"storybook:build": {
|
|
85
|
+
"cache": true
|
|
86
|
+
},
|
|
87
|
+
"package": {
|
|
88
|
+
"cache": true
|
|
89
|
+
},
|
|
90
|
+
"prepare": {
|
|
91
|
+
"cache": true
|
|
92
|
+
},
|
|
93
|
+
"compile:scss": {
|
|
94
|
+
"cache": true
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/pui-cli",
|
|
3
|
-
"version": "9.0.0-next.
|
|
3
|
+
"version": "9.0.0-next.25",
|
|
4
4
|
"description": "ICE MT UI Platform CLI",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"type": "module",
|
|
@@ -30,12 +30,14 @@
|
|
|
30
30
|
"require": "./dist/cjs/server/appRoutes.js"
|
|
31
31
|
},
|
|
32
32
|
"./app.tsconfig.json": "./app.tsconfig.json",
|
|
33
|
-
"./library.tsconfig.json": "./library.tsconfig.json"
|
|
33
|
+
"./library.tsconfig.json": "./library.tsconfig.json",
|
|
34
|
+
"./nx.json": "./nx.json"
|
|
34
35
|
},
|
|
35
36
|
"files": [
|
|
36
37
|
"dist",
|
|
37
38
|
"./app.tsconfig.json",
|
|
38
|
-
"./library.tsconfig.json"
|
|
39
|
+
"./library.tsconfig.json",
|
|
40
|
+
"./nx.json"
|
|
39
41
|
],
|
|
40
42
|
"publishConfig": {
|
|
41
43
|
"access": "public"
|
|
@@ -46,7 +48,7 @@
|
|
|
46
48
|
},
|
|
47
49
|
"engines": {
|
|
48
50
|
"pnpm": ">=8",
|
|
49
|
-
"node": ">=
|
|
51
|
+
"node": ">=20"
|
|
50
52
|
},
|
|
51
53
|
"author": "ICE MT",
|
|
52
54
|
"license": "MIT",
|