create-moria 0.4.30 → 0.4.32
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.
- package/.turbo/turbo-build.log +1 -1
- package/dist/index.js +2 -2
- package/package.json +1 -1
- package/src/index.ts +2 -2
package/.turbo/turbo-build.log
CHANGED
package/dist/index.js
CHANGED
|
@@ -186,7 +186,7 @@ async function main() {
|
|
|
186
186
|
const app = await createApp({
|
|
187
187
|
config: {
|
|
188
188
|
...config,
|
|
189
|
-
mode: process.env.NODE_ENV === '
|
|
189
|
+
mode: process.env.NODE_ENV === 'production' ? 'production' : 'development',
|
|
190
190
|
rootDir: path.resolve(import.meta.dirname, '..'),
|
|
191
191
|
},
|
|
192
192
|
});
|
|
@@ -525,7 +525,7 @@ async function main() {
|
|
|
525
525
|
const app = await createApp({
|
|
526
526
|
config: {
|
|
527
527
|
...config,
|
|
528
|
-
mode: process.env.NODE_ENV === '
|
|
528
|
+
mode: process.env.NODE_ENV === 'production' ? 'production' : 'development',
|
|
529
529
|
rootDir: __appRoot,
|
|
530
530
|
},
|
|
531
531
|
});
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -208,7 +208,7 @@ async function main() {
|
|
|
208
208
|
const app = await createApp({
|
|
209
209
|
config: {
|
|
210
210
|
...config,
|
|
211
|
-
mode: process.env.NODE_ENV === '
|
|
211
|
+
mode: process.env.NODE_ENV === 'production' ? 'production' : 'development',
|
|
212
212
|
rootDir: path.resolve(import.meta.dirname, '..'),
|
|
213
213
|
},
|
|
214
214
|
});
|
|
@@ -561,7 +561,7 @@ async function main() {
|
|
|
561
561
|
const app = await createApp({
|
|
562
562
|
config: {
|
|
563
563
|
...config,
|
|
564
|
-
mode: process.env.NODE_ENV === '
|
|
564
|
+
mode: process.env.NODE_ENV === 'production' ? 'production' : 'development',
|
|
565
565
|
rootDir: __appRoot,
|
|
566
566
|
},
|
|
567
567
|
});
|