fix: plugin not found (#3415)

This commit is contained in:
Alex Yang
2023-07-27 05:56:59 -07:00
committed by GitHub
parent 39054a7c3d
commit 2980c1afac
5 changed files with 5 additions and 8 deletions

View File

@@ -4,7 +4,6 @@ import path from 'node:path';
import type { BuildFlags } from '../config/index.js';
import { projectRoot } from '../config/index.js';
import { buildI18N } from '../util/i18n.js';
import { buildInfra } from '../util/infra.js';
const cwd = path.resolve(projectRoot, 'apps', 'core');
@@ -46,7 +45,6 @@ const flags = {
} satisfies BuildFlags;
buildI18N();
await buildInfra();
spawn(
'node',
[

View File

@@ -7,7 +7,6 @@ import { config } from 'dotenv';
import { type BuildFlags, projectRoot } from '../config/index.js';
import { watchI18N } from '../util/i18n.js';
import { watchInfra } from '../util/infra.js';
const files = ['.env', '.env.local'];
@@ -94,7 +93,6 @@ flags.channel = buildFlags.channel as any;
flags.coverage = buildFlags.coverage;
watchI18N();
await watchInfra();
spawn(
'node',
[