Skip to content

Commit 4cf26ee

Browse files
committed
chore: wip
1 parent a97749f commit 4cf26ee

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
import { runCommand } from '@stacksjs/cli'
2-
3-
// import { parseOptions, runCommand } from '@stacksjs/cli'
42
import { frameworkPath } from '@stacksjs/path'
3+
import { NpmScript } from '@stacksjs/types'
54

5+
// import { parseOptions, runCommand } from '@stacksjs/cli'
66
// import type { DeployOptions } from '@stacksjs/types'
7-
import { NpmScript } from '@stacksjs/types'
7+
8+
// console.log('running dev components')
89

910
// const options: DeployOptions = parseOptions()
1011

1112
await runCommand(NpmScript.DevComponents, {
1213
cwd: frameworkPath(),
13-
verbose: true,
1414
// ...options,
1515
})

.stacks/core/types/src/app.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ export interface AppOptions {
5858
* a random, 32 character string, otherwise these encrypted strings will
5959
* not be safe. Please do this before deploying an application!
6060
*/
61-
key?: string
61+
key: string
6262

6363
/**
6464
* **Application Timezone**
@@ -69,7 +69,7 @@ export interface AppOptions {
6969
*
7070
* @default string "UTC"
7171
*/
72-
timezone?: string
72+
timezone: string
7373

7474
/**
7575
* **Application Locale Configuration**
@@ -82,7 +82,7 @@ export interface AppOptions {
8282
* @example
8383
* de // ./lang/de.yml needs to be present for this
8484
*/
85-
locale?: string
85+
locale: string
8686

8787
/**
8888
* **Application Fallback Locale**

0 commit comments

Comments
 (0)