Skip to content

Commit

Permalink
fix(wb): add missing options in start command
Browse files Browse the repository at this point in the history
  • Loading branch information
exKAZUu committed Oct 3, 2023
1 parent a2d7c14 commit 27a9191
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/wb/src/commands/start.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { loadEnvironmentVariables } from '@willbooster/shared-lib-node/src';
import type { CommandModule, InferredOptionTypes } from 'yargs';

import { project } from '../project.js';
import { normalizeArgs } from '../scripts/builder.js';
import { normalizeArgs, scriptOptionsBuilder } from '../scripts/builder.js';
import type { BaseExecutionScripts } from '../scripts/execution/baseExecutionScripts.js';
import { blitzScripts } from '../scripts/execution/blitzScripts.js';
import { httpServerScripts } from '../scripts/execution/httpServerScripts.js';
Expand All @@ -13,6 +13,7 @@ import { runWithSpawn } from '../scripts/run.js';
import type { sharedOptionsBuilder } from '../sharedOptionsBuilder.js';

const builder = {
...scriptOptionsBuilder,
mode: {
description: 'Start mode: dev[elopment] (default) | staging | docker',
type: 'string',
Expand Down

0 comments on commit 27a9191

Please sign in to comment.