@cedarjs/cli 3.0.0-canary.13304 → 3.0.0-canary.13306

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.
@@ -27,7 +27,7 @@ async function updateTsconfig(task) {
27
27
  {
28
28
  name: "api",
29
29
  path: path.join(getPaths().api.base, "tsconfig.json"),
30
- expectedModule: "Node20",
30
+ expectedModule: "node20",
31
31
  // While Cedar doesn't officially endorse NodeNext, it will still work
32
32
  // here, so we'll keep it
33
33
  acceptable: ["node20", "nodenext"]
@@ -35,13 +35,13 @@ async function updateTsconfig(task) {
35
35
  {
36
36
  name: "web",
37
37
  path: path.join(getPaths().web.base, "tsconfig.json"),
38
- expectedModule: "ESNext",
38
+ expectedModule: "esnext",
39
39
  acceptable: ["esnext", "es2022"]
40
40
  },
41
41
  {
42
42
  name: "scripts",
43
43
  path: path.join(getPaths().scripts, "tsconfig.json"),
44
- expectedModule: "Node20",
44
+ expectedModule: "node20",
45
45
  acceptable: ["node20", "nodenext"]
46
46
  }
47
47
  ];
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "compilerOptions": {
3
3
  "composite": true,
4
- "target": "ES2023",
5
- "module": "Node20",
4
+ "target": "es2023",
5
+ "module": "node20",
6
6
  "esModuleInterop": true,
7
7
  "skipLibCheck": true,
8
8
  "baseUrl": ".",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cedarjs/cli",
3
- "version": "3.0.0-canary.13304+11a0d1f39",
3
+ "version": "3.0.0-canary.13306+cdce5184d",
4
4
  "description": "The CedarJS Command Line",
5
5
  "repository": {
6
6
  "type": "git",
@@ -33,15 +33,15 @@
33
33
  "dependencies": {
34
34
  "@babel/preset-typescript": "7.28.5",
35
35
  "@babel/runtime-corejs3": "7.28.6",
36
- "@cedarjs/api-server": "3.0.0-canary.13304",
37
- "@cedarjs/cli-helpers": "3.0.0-canary.13304",
38
- "@cedarjs/fastify-web": "3.0.0-canary.13304",
39
- "@cedarjs/internal": "3.0.0-canary.13304",
40
- "@cedarjs/prerender": "3.0.0-canary.13304",
41
- "@cedarjs/project-config": "3.0.0-canary.13304",
42
- "@cedarjs/structure": "3.0.0-canary.13304",
43
- "@cedarjs/telemetry": "3.0.0-canary.13304",
44
- "@cedarjs/web-server": "3.0.0-canary.13304",
36
+ "@cedarjs/api-server": "3.0.0-canary.13306",
37
+ "@cedarjs/cli-helpers": "3.0.0-canary.13306",
38
+ "@cedarjs/fastify-web": "3.0.0-canary.13306",
39
+ "@cedarjs/internal": "3.0.0-canary.13306",
40
+ "@cedarjs/prerender": "3.0.0-canary.13306",
41
+ "@cedarjs/project-config": "3.0.0-canary.13306",
42
+ "@cedarjs/structure": "3.0.0-canary.13306",
43
+ "@cedarjs/telemetry": "3.0.0-canary.13306",
44
+ "@cedarjs/web-server": "3.0.0-canary.13306",
45
45
  "@listr2/prompt-adapter-enquirer": "2.0.16",
46
46
  "@opentelemetry/api": "1.9.0",
47
47
  "@opentelemetry/core": "1.30.1",
@@ -104,5 +104,5 @@
104
104
  "publishConfig": {
105
105
  "access": "public"
106
106
  },
107
- "gitHead": "11a0d1f392327b67801dae6c302f8c9a1da900b5"
107
+ "gitHead": "cdce5184d634e6a73601b3a9cb3ad92d9a96d33e"
108
108
  }