File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 1
1
import { runCommand } from '@stacksjs/cli'
2
-
3
- // import { parseOptions, runCommand } from '@stacksjs/cli'
4
2
import { frameworkPath } from '@stacksjs/path'
3
+ import { NpmScript } from '@stacksjs/types'
5
4
5
+ // import { parseOptions, runCommand } from '@stacksjs/cli'
6
6
// import type { DeployOptions } from '@stacksjs/types'
7
- import { NpmScript } from '@stacksjs/types'
7
+
8
+ // console.log('running dev components')
8
9
9
10
// const options: DeployOptions = parseOptions()
10
11
11
12
await runCommand ( NpmScript . DevComponents , {
12
13
cwd : frameworkPath ( ) ,
13
- verbose : true ,
14
14
// ...options,
15
15
} )
Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ export interface AppOptions {
58
58
* a random, 32 character string, otherwise these encrypted strings will
59
59
* not be safe. Please do this before deploying an application!
60
60
*/
61
- key ? : string
61
+ key : string
62
62
63
63
/**
64
64
* **Application Timezone**
@@ -69,7 +69,7 @@ export interface AppOptions {
69
69
*
70
70
* @default string "UTC"
71
71
*/
72
- timezone ? : string
72
+ timezone : string
73
73
74
74
/**
75
75
* **Application Locale Configuration**
@@ -82,7 +82,7 @@ export interface AppOptions {
82
82
* @example
83
83
* de // ./lang/de.yml needs to be present for this
84
84
*/
85
- locale ? : string
85
+ locale : string
86
86
87
87
/**
88
88
* **Application Fallback Locale**
You can’t perform that action at this time.
0 commit comments