@cedarjs/cli 4.0.0-canary.13667 → 4.0.0-canary.13669
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.
|
@@ -8,6 +8,7 @@ import { Listr } from "listr2";
|
|
|
8
8
|
import { terminalLink } from "termi-link";
|
|
9
9
|
import ts from "typescript";
|
|
10
10
|
import { recordTelemetryAttributes } from "@cedarjs/cli-helpers";
|
|
11
|
+
import { workspacePackageSpecifier } from "@cedarjs/cli-helpers/packageManager";
|
|
11
12
|
import { getConfig } from "@cedarjs/project-config";
|
|
12
13
|
import { errorTelemetry } from "@cedarjs/telemetry";
|
|
13
14
|
import c from "../../../lib/colors.js";
|
|
@@ -133,7 +134,7 @@ async function addDependencyToPackageJson(task, packageJsonPath, packageName) {
|
|
|
133
134
|
task.skip("Dependency already exists");
|
|
134
135
|
return;
|
|
135
136
|
}
|
|
136
|
-
packageJson.dependencies[packageName] =
|
|
137
|
+
packageJson.dependencies[packageName] = workspacePackageSpecifier();
|
|
137
138
|
await fs.promises.writeFile(
|
|
138
139
|
packageJsonPath,
|
|
139
140
|
JSON.stringify(packageJson, null, 2)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cedarjs/cli",
|
|
3
|
-
"version": "4.0.0-canary.
|
|
3
|
+
"version": "4.0.0-canary.13669+ae8c467c4",
|
|
4
4
|
"description": "The CedarJS Command Line",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -33,16 +33,16 @@
|
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@babel/parser": "7.29.2",
|
|
35
35
|
"@babel/preset-typescript": "7.28.5",
|
|
36
|
-
"@cedarjs/api-server": "4.0.0-canary.
|
|
37
|
-
"@cedarjs/cli-helpers": "4.0.0-canary.
|
|
38
|
-
"@cedarjs/fastify-web": "4.0.0-canary.
|
|
39
|
-
"@cedarjs/internal": "4.0.0-canary.
|
|
40
|
-
"@cedarjs/prerender": "4.0.0-canary.
|
|
41
|
-
"@cedarjs/project-config": "4.0.0-canary.
|
|
42
|
-
"@cedarjs/structure": "4.0.0-canary.
|
|
43
|
-
"@cedarjs/telemetry": "4.0.0-canary.
|
|
44
|
-
"@cedarjs/utils": "4.0.0-canary.
|
|
45
|
-
"@cedarjs/web-server": "4.0.0-canary.
|
|
36
|
+
"@cedarjs/api-server": "4.0.0-canary.13669",
|
|
37
|
+
"@cedarjs/cli-helpers": "4.0.0-canary.13669",
|
|
38
|
+
"@cedarjs/fastify-web": "4.0.0-canary.13669",
|
|
39
|
+
"@cedarjs/internal": "4.0.0-canary.13669",
|
|
40
|
+
"@cedarjs/prerender": "4.0.0-canary.13669",
|
|
41
|
+
"@cedarjs/project-config": "4.0.0-canary.13669",
|
|
42
|
+
"@cedarjs/structure": "4.0.0-canary.13669",
|
|
43
|
+
"@cedarjs/telemetry": "4.0.0-canary.13669",
|
|
44
|
+
"@cedarjs/utils": "4.0.0-canary.13669",
|
|
45
|
+
"@cedarjs/web-server": "4.0.0-canary.13669",
|
|
46
46
|
"@listr2/prompt-adapter-enquirer": "4.2.1",
|
|
47
47
|
"@opentelemetry/api": "1.9.0",
|
|
48
48
|
"@opentelemetry/core": "1.30.1",
|
|
@@ -105,5 +105,5 @@
|
|
|
105
105
|
"publishConfig": {
|
|
106
106
|
"access": "public"
|
|
107
107
|
},
|
|
108
|
-
"gitHead": "
|
|
108
|
+
"gitHead": "ae8c467c424198bf05acb2e818118a04695c47cb"
|
|
109
109
|
}
|