@cedarjs/cli 1.0.0-canary.12561 → 1.0.0-canary.12562

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.
@@ -188,7 +188,7 @@ const handler = async ({ force, install }) => {
188
188
  const newTailwindConfig = 'const { join } = require("node:path");\n\n' + tailwindConfig.replace(
189
189
  "content: []",
190
190
  "content: [join(__dirname, '../src/**/*.{js,jsx,ts,tsx}')]"
191
- );
191
+ ).replace("export default {", "module.exports = {");
192
192
  fs.writeFileSync(tailwindConfigPath, newTailwindConfig);
193
193
  }
194
194
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cedarjs/cli",
3
- "version": "1.0.0-canary.12561+e14c28d05",
3
+ "version": "1.0.0-canary.12562+44d404f5e",
4
4
  "description": "The Redwood Command Line",
5
5
  "repository": {
6
6
  "type": "git",
@@ -32,15 +32,15 @@
32
32
  "dependencies": {
33
33
  "@babel/preset-typescript": "7.27.1",
34
34
  "@babel/runtime-corejs3": "7.27.6",
35
- "@cedarjs/api-server": "1.0.0-canary.12561",
36
- "@cedarjs/cli-helpers": "1.0.0-canary.12561",
37
- "@cedarjs/fastify-web": "1.0.0-canary.12561",
38
- "@cedarjs/internal": "1.0.0-canary.12561",
39
- "@cedarjs/prerender": "1.0.0-canary.12561",
40
- "@cedarjs/project-config": "1.0.0-canary.12561",
41
- "@cedarjs/structure": "1.0.0-canary.12561",
42
- "@cedarjs/telemetry": "1.0.0-canary.12561",
43
- "@cedarjs/web-server": "1.0.0-canary.12561",
35
+ "@cedarjs/api-server": "1.0.0-canary.12562",
36
+ "@cedarjs/cli-helpers": "1.0.0-canary.12562",
37
+ "@cedarjs/fastify-web": "1.0.0-canary.12562",
38
+ "@cedarjs/internal": "1.0.0-canary.12562",
39
+ "@cedarjs/prerender": "1.0.0-canary.12562",
40
+ "@cedarjs/project-config": "1.0.0-canary.12562",
41
+ "@cedarjs/structure": "1.0.0-canary.12562",
42
+ "@cedarjs/telemetry": "1.0.0-canary.12562",
43
+ "@cedarjs/web-server": "1.0.0-canary.12562",
44
44
  "@listr2/prompt-adapter-enquirer": "2.0.16",
45
45
  "@opentelemetry/api": "1.8.0",
46
46
  "@opentelemetry/core": "1.22.0",
@@ -99,5 +99,5 @@
99
99
  "typescript": "5.6.2",
100
100
  "vitest": "3.2.4"
101
101
  },
102
- "gitHead": "e14c28d05a4411bff2ef81f1117ed39ea77acfe5"
102
+ "gitHead": "44d404f5ebb233d6fb48d8e41d226641f5f9f440"
103
103
  }