@cedarjs/cli 1.0.0-canary.12329 → 1.0.0-canary.12331
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.
|
@@ -128,7 +128,13 @@ const handler = async ({ force, install }) => {
|
|
|
128
128
|
"yarn",
|
|
129
129
|
["workspace", "web", "add", "-D", ...webWorkspacePackages],
|
|
130
130
|
{
|
|
131
|
-
cwd: rwPaths.base
|
|
131
|
+
cwd: rwPaths.base,
|
|
132
|
+
env: {
|
|
133
|
+
// For some reason yarn started installing deprecated
|
|
134
|
+
// typescript types when installing tailwind. This
|
|
135
|
+
// prevents it from happening.
|
|
136
|
+
YARN_TS_ENABLE_AUTO_TYPES: "false"
|
|
137
|
+
}
|
|
132
138
|
}
|
|
133
139
|
);
|
|
134
140
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cedarjs/cli",
|
|
3
|
-
"version": "1.0.0-canary.
|
|
3
|
+
"version": "1.0.0-canary.12331+18c78be6c",
|
|
4
4
|
"description": "The Redwood Command Line",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -29,15 +29,15 @@
|
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"@babel/runtime-corejs3": "7.27.6",
|
|
32
|
-
"@cedarjs/api-server": "1.0.0-canary.
|
|
33
|
-
"@cedarjs/cli-helpers": "1.0.0-canary.
|
|
34
|
-
"@cedarjs/fastify-web": "1.0.0-canary.
|
|
35
|
-
"@cedarjs/internal": "1.0.0-canary.
|
|
36
|
-
"@cedarjs/prerender": "1.0.0-canary.
|
|
37
|
-
"@cedarjs/project-config": "1.0.0-canary.
|
|
38
|
-
"@cedarjs/structure": "1.0.0-canary.
|
|
39
|
-
"@cedarjs/telemetry": "1.0.0-canary.
|
|
40
|
-
"@cedarjs/web-server": "1.0.0-canary.
|
|
32
|
+
"@cedarjs/api-server": "1.0.0-canary.12331",
|
|
33
|
+
"@cedarjs/cli-helpers": "1.0.0-canary.12331",
|
|
34
|
+
"@cedarjs/fastify-web": "1.0.0-canary.12331",
|
|
35
|
+
"@cedarjs/internal": "1.0.0-canary.12331",
|
|
36
|
+
"@cedarjs/prerender": "1.0.0-canary.12331",
|
|
37
|
+
"@cedarjs/project-config": "1.0.0-canary.12331",
|
|
38
|
+
"@cedarjs/structure": "1.0.0-canary.12331",
|
|
39
|
+
"@cedarjs/telemetry": "1.0.0-canary.12331",
|
|
40
|
+
"@cedarjs/web-server": "1.0.0-canary.12331",
|
|
41
41
|
"@listr2/prompt-adapter-enquirer": "2.0.12",
|
|
42
42
|
"@opentelemetry/api": "1.8.0",
|
|
43
43
|
"@opentelemetry/core": "1.22.0",
|
|
@@ -95,5 +95,5 @@
|
|
|
95
95
|
"typescript": "5.6.2",
|
|
96
96
|
"vitest": "2.1.9"
|
|
97
97
|
},
|
|
98
|
-
"gitHead": "
|
|
98
|
+
"gitHead": "18c78be6c4524915f531c0a679cd83e5edc08ddb"
|
|
99
99
|
}
|