@cedarjs/web-server 4.0.0-canary.13790 → 4.0.0-canary.13798

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/dist/bin.js +2 -2
  2. package/package.json +5 -5
package/dist/bin.js CHANGED
@@ -133,13 +133,13 @@ function builder(yargs2) {
133
133
 
134
134
  // src/bin.ts
135
135
  init_cliConfigHandler();
136
- if (!process.env.REDWOOD_ENV_FILES_LOADED) {
136
+ if (!process.env.CEDAR_ENV_FILES_LOADED) {
137
137
  (0, import_dotenv_defaults.config)({
138
138
  path: import_path.default.join((0, import_project_config2.getPaths)().base, ".env"),
139
139
  defaults: import_path.default.join((0, import_project_config2.getPaths)().base, ".env.defaults"),
140
140
  multiline: true
141
141
  });
142
- process.env.REDWOOD_ENV_FILES_LOADED = "true";
142
+ process.env.CEDAR_ENV_FILES_LOADED = "true";
143
143
  }
144
144
  process.env.NODE_ENV ??= "production";
145
145
  var [scriptName] = Object.keys(bin);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cedarjs/web-server",
3
- "version": "4.0.0-canary.13790+5cc27be7a2",
3
+ "version": "4.0.0-canary.13798+50f726e607",
4
4
  "description": "CedarJS's server for the Web side",
5
5
  "repository": {
6
6
  "type": "git",
@@ -26,15 +26,15 @@
26
26
  "prepublishOnly": "NODE_ENV=production yarn build"
27
27
  },
28
28
  "dependencies": {
29
- "@cedarjs/fastify-web": "4.0.0-canary.13790",
30
- "@cedarjs/project-config": "4.0.0-canary.13790",
29
+ "@cedarjs/fastify-web": "4.0.0-canary.13798",
30
+ "@cedarjs/project-config": "4.0.0-canary.13798",
31
31
  "ansis": "4.2.0",
32
32
  "dotenv-defaults": "5.0.2",
33
33
  "fastify": "5.8.4",
34
34
  "yargs": "17.7.2"
35
35
  },
36
36
  "devDependencies": {
37
- "@cedarjs/framework-tools": "4.0.0-canary.13790",
37
+ "@cedarjs/framework-tools": "4.0.0-canary.13798",
38
38
  "tsx": "4.21.0",
39
39
  "typescript": "5.9.3"
40
40
  },
@@ -44,5 +44,5 @@
44
44
  "publishConfig": {
45
45
  "access": "public"
46
46
  },
47
- "gitHead": "5cc27be7a2776c23a80989a488b2337766ef4d13"
47
+ "gitHead": "50f726e607a65475e6a5e4e3e0604e2e8f602fd0"
48
48
  }