@cedarjs/cli 6.0.0-canary.2886 → 6.0.0-canary.2888
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.
|
@@ -15,7 +15,7 @@ import { getConfig } from "@cedarjs/project-config";
|
|
|
15
15
|
import { getPackageManager } from "@cedarjs/project-config/packageManager";
|
|
16
16
|
import { errorTelemetry } from "@cedarjs/telemetry";
|
|
17
17
|
import { getPaths, writeFilesTask } from "../../../lib/index.js";
|
|
18
|
-
import { prepareForRollback } from "../../../lib/rollback.js";
|
|
18
|
+
import { addFileToRollback, prepareForRollback } from "../../../lib/rollback.js";
|
|
19
19
|
import { files } from "./filesTask.js";
|
|
20
20
|
function nameVariants(nameArg) {
|
|
21
21
|
const base = path.basename(getPaths().base);
|
|
@@ -246,6 +246,9 @@ function updateWorkspaceTsconfigReferences(task, folderName, targetWorkspaces) {
|
|
|
246
246
|
async function installAndBuild(folderName) {
|
|
247
247
|
const packagePath = path.join("packages", folderName);
|
|
248
248
|
await installPackages({ stdio: "inherit", cwd: getPaths().base });
|
|
249
|
+
addFileToRollback(
|
|
250
|
+
path.join(getPaths().base, packagePath, "tsconfig.tsbuildinfo")
|
|
251
|
+
);
|
|
249
252
|
await runScript("build", [], { stdio: "inherit", cwd: packagePath });
|
|
250
253
|
}
|
|
251
254
|
const handler = async ({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cedarjs/cli",
|
|
3
|
-
"version": "6.0.0-canary.
|
|
3
|
+
"version": "6.0.0-canary.2888",
|
|
4
4
|
"description": "The CedarJS Command Line",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -36,17 +36,17 @@
|
|
|
36
36
|
"@babel/preset-typescript": "7.29.7",
|
|
37
37
|
"@babel/traverse": "7.29.7",
|
|
38
38
|
"@babel/types": "7.29.7",
|
|
39
|
-
"@cedarjs/api-server": "6.0.0-canary.
|
|
40
|
-
"@cedarjs/babel-config": "6.0.0-canary.
|
|
41
|
-
"@cedarjs/cli-helpers": "6.0.0-canary.
|
|
42
|
-
"@cedarjs/internal": "6.0.0-canary.
|
|
43
|
-
"@cedarjs/prerender": "6.0.0-canary.
|
|
44
|
-
"@cedarjs/project-config": "6.0.0-canary.
|
|
45
|
-
"@cedarjs/structure": "6.0.0-canary.
|
|
46
|
-
"@cedarjs/telemetry": "6.0.0-canary.
|
|
47
|
-
"@cedarjs/utils": "6.0.0-canary.
|
|
48
|
-
"@cedarjs/vite": "6.0.0-canary.
|
|
49
|
-
"@cedarjs/web-server": "6.0.0-canary.
|
|
39
|
+
"@cedarjs/api-server": "6.0.0-canary.2888",
|
|
40
|
+
"@cedarjs/babel-config": "6.0.0-canary.2888",
|
|
41
|
+
"@cedarjs/cli-helpers": "6.0.0-canary.2888",
|
|
42
|
+
"@cedarjs/internal": "6.0.0-canary.2888",
|
|
43
|
+
"@cedarjs/prerender": "6.0.0-canary.2888",
|
|
44
|
+
"@cedarjs/project-config": "6.0.0-canary.2888",
|
|
45
|
+
"@cedarjs/structure": "6.0.0-canary.2888",
|
|
46
|
+
"@cedarjs/telemetry": "6.0.0-canary.2888",
|
|
47
|
+
"@cedarjs/utils": "6.0.0-canary.2888",
|
|
48
|
+
"@cedarjs/vite": "6.0.0-canary.2888",
|
|
49
|
+
"@cedarjs/web-server": "6.0.0-canary.2888",
|
|
50
50
|
"@listr2/prompt-adapter-enquirer": "4.3.0",
|
|
51
51
|
"@opentelemetry/api": "1.9.1",
|
|
52
52
|
"@opentelemetry/core": "1.30.1",
|
|
@@ -94,7 +94,7 @@
|
|
|
94
94
|
"yargs": "17.7.3"
|
|
95
95
|
},
|
|
96
96
|
"devDependencies": {
|
|
97
|
-
"@cedarjs/framework-tools": "6.0.0-canary.
|
|
97
|
+
"@cedarjs/framework-tools": "6.0.0-canary.2888",
|
|
98
98
|
"@prisma/dmmf": "7.8.0",
|
|
99
99
|
"@types/archiver": "^7.0.0",
|
|
100
100
|
"memfs": "4.64.0",
|