@cedarjs/cli 1.0.0-canary.12409 → 1.0.0-canary.12411

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.
@@ -1,5 +1,8 @@
1
- import { describe, it } from "vitest";
1
+ import { beforeAll, describe, it } from "vitest";
2
2
  describe("Middleware codemod", () => {
3
+ beforeAll(async () => {
4
+ await new Promise((res) => setImmediate(res));
5
+ });
3
6
  it("Handles the default TSX case", async () => {
4
7
  await matchTransformSnapshot("codemodMiddleware", "defaultTsx");
5
8
  });
@@ -1,5 +1,8 @@
1
1
  import { beforeAll, describe, it } from "vitest";
2
2
  describe("Vite plugin codemod", () => {
3
+ beforeAll(async () => {
4
+ await new Promise((res) => setImmediate(res));
5
+ });
3
6
  beforeAll(async () => {
4
7
  await new Promise((res) => setImmediate(res));
5
8
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cedarjs/cli",
3
- "version": "1.0.0-canary.12409+cd5a20745",
3
+ "version": "1.0.0-canary.12411+05e09ed17",
4
4
  "description": "The Redwood Command Line",
5
5
  "repository": {
6
6
  "type": "git",
@@ -31,15 +31,15 @@
31
31
  },
32
32
  "dependencies": {
33
33
  "@babel/runtime-corejs3": "7.27.6",
34
- "@cedarjs/api-server": "1.0.0-canary.12409",
35
- "@cedarjs/cli-helpers": "1.0.0-canary.12409",
36
- "@cedarjs/fastify-web": "1.0.0-canary.12409",
37
- "@cedarjs/internal": "1.0.0-canary.12409",
38
- "@cedarjs/prerender": "1.0.0-canary.12409",
39
- "@cedarjs/project-config": "1.0.0-canary.12409",
40
- "@cedarjs/structure": "1.0.0-canary.12409",
41
- "@cedarjs/telemetry": "1.0.0-canary.12409",
42
- "@cedarjs/web-server": "1.0.0-canary.12409",
34
+ "@cedarjs/api-server": "1.0.0-canary.12411",
35
+ "@cedarjs/cli-helpers": "1.0.0-canary.12411",
36
+ "@cedarjs/fastify-web": "1.0.0-canary.12411",
37
+ "@cedarjs/internal": "1.0.0-canary.12411",
38
+ "@cedarjs/prerender": "1.0.0-canary.12411",
39
+ "@cedarjs/project-config": "1.0.0-canary.12411",
40
+ "@cedarjs/structure": "1.0.0-canary.12411",
41
+ "@cedarjs/telemetry": "1.0.0-canary.12411",
42
+ "@cedarjs/web-server": "1.0.0-canary.12411",
43
43
  "@listr2/prompt-adapter-enquirer": "2.0.12",
44
44
  "@opentelemetry/api": "1.8.0",
45
45
  "@opentelemetry/core": "1.22.0",
@@ -98,5 +98,5 @@
98
98
  "typescript": "5.6.2",
99
99
  "vitest": "3.2.4"
100
100
  },
101
- "gitHead": "cd5a207457ee1281c80f34ebf2ba9f462f74b352"
101
+ "gitHead": "05e09ed178ddc4807be2df6a67d98bed92b9f01f"
102
102
  }