Skip to content

Commit

Permalink
chore: 删除无用的依赖
Browse files Browse the repository at this point in the history
  • Loading branch information
xwchris committed Dec 9, 2024
1 parent 969e456 commit c43d328
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import chalk from 'chalk';
import { AppSceneTypeEnum, requestBeforeCheck } from '../common';
import inquirer from 'inquirer';
import fs from 'fs';
import path from 'path';
import { upload } from './utils';
import { compressDir } from '../compress/utils';
import { generateRequestFromOpen } from '../common';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,6 @@
"@bytedance/mona-speedy": "0.0.37",
"@bytedance/mona-speedy-components": "0.0.37",
"@bytedance/mona-speedy-runtime": "0.0.37",
"@byted-lynx/react-rsbuild-plugin": "0.3.0",
"@byted-lynx/rspeedy": "0.5.2",
"@byted-lynx/react": "0.99.8",
"@rspack/core": "^1.1.4",
"@rsbuild/plugin-less": "^1.1.0",
"axios": "^1.6.5",
"babel-loader": "^8.2.2",
"chalk": "^4.1.2",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ const max: IPlugin = async ctx => {
.concat([cmd, '--config', path.join(tempLynxDir, 'lynx.config.js'), '--config-name', name]);
speedy.run();

if (name === 'component') {
const isPipelineEnv = process.env.CI_PIPELINE;
if (name === 'component' && isPipelineEnv) {
console.log('start build ReactLynx3!')
try {
child_process.execSync(`rspeedy build --config ${path.join(tempLynxDir, 'lynx-3.config.mjs')}`, { encoding: 'utf-8' });
Expand Down

0 comments on commit c43d328

Please sign in to comment.