@dbx-tools/projen 0.6.63 → 0.6.64

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.
Files changed (2) hide show
  1. package/package.json +4 -4
  2. package/src/bun-app.ts +1 -0
package/package.json CHANGED
@@ -26,9 +26,9 @@
26
26
  },
27
27
  "dependencies": {
28
28
  "@clack/prompts": "^1.7.0",
29
- "@dbx-tools/core": "0.6.63",
30
- "@dbx-tools/path": "0.6.63",
31
- "@dbx-tools/shared-core": "0.6.63",
29
+ "@dbx-tools/core": "0.6.64",
30
+ "@dbx-tools/path": "0.6.64",
31
+ "@dbx-tools/shared-core": "0.6.64",
32
32
  "commander": "^15.0.0",
33
33
  "concurrently": "^10.0.3",
34
34
  "constructs": "^10.6.0",
@@ -47,7 +47,7 @@
47
47
  },
48
48
  "main": "index.ts",
49
49
  "license": "Apache-2.0",
50
- "version": "0.6.63",
50
+ "version": "0.6.64",
51
51
  "types": "index.ts",
52
52
  "type": "module",
53
53
  "exports": {
package/src/bun-app.ts CHANGED
@@ -141,6 +141,7 @@ import tailwind from "bun-plugin-tailwind";
141
141
  let options: Bun.BuildConfig = {
142
142
  entrypoints: ["./index.html"],
143
143
  outdir: "./dist",
144
+ define: { "process.env.NODE_ENV": JSON.stringify("production") },
144
145
  minify: true,
145
146
  splitting: true,
146
147
  publicPath: "/",