dino-ge-playground 1.2.13 → 1.2.14

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 +2 -2
  2. package/server.js +1 -1
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "dino-ge-playground",
3
- "version": "1.2.13",
3
+ "version": "1.2.14",
4
4
  "description": "Interactive, live-editing playground and inspector for Dino GE",
5
5
  "bin": {
6
- "dino-ge-playground": "ENVIRONMENT=prod node server.js"
6
+ "dino-ge-playground": "server.js"
7
7
  },
8
8
  "type": "module",
9
9
  "scripts": {
package/server.js CHANGED
@@ -14,7 +14,7 @@ const DIST_DIR = path.join(__dirname, 'dist');
14
14
  const PUBLIC_DIR = path.join(__dirname, 'public');
15
15
  const SCRIPTS_DIR = path.join(process.cwd(), 'scripts');
16
16
 
17
- const ENV = process.env.ENVIRONMENT || 'dev';
17
+ const ENV = process.env.ENVIRONMENT || 'prod';
18
18
 
19
19
  // Ensure scripts directory exists
20
20
  if (!existsSync(SCRIPTS_DIR)) {