mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
add optimized flag && cleanup
This commit is contained in:
parent
3d3e2ad914
commit
c5ee7220d3
@ -55,7 +55,6 @@
|
||||
"bootstrap": "node ./scripts/bootstrap.js",
|
||||
"build": "node ./scripts/build-package.js",
|
||||
"build-manager": "node -r esm ./scripts/build-manager.js",
|
||||
"build-packs": "lerna exec --scope '@storybook/*' -- \\$LERNA_ROOT_PATH/scripts/build-pack.sh \\$LERNA_ROOT_PATH/packs",
|
||||
"build-storybooks": "cross-env STORYBOOK_DISPLAY_WARNING=true DISPLAY_WARNING=true node -r esm ./scripts/build-storybooks.js",
|
||||
"changelog": "pr-log --sloppy --cherry-pick",
|
||||
"changelog:next": "pr-log --sloppy --since-prerelease",
|
||||
|
16
scripts/bootstrap.js
vendored
16
scripts/bootstrap.js
vendored
@ -109,9 +109,9 @@ function run() {
|
||||
command: () => {
|
||||
log.info(prefix, 'prepare');
|
||||
spawn(
|
||||
`nx run-many --target=prepare --all --parallel ${
|
||||
`nx run-many --target="prepare" --all --parallel ${
|
||||
process.env.CI ? `--max-parallel=${maxConcurrentTasks}` : ''
|
||||
}`
|
||||
} -- --optimized`
|
||||
);
|
||||
},
|
||||
order: 2,
|
||||
@ -125,16 +125,6 @@ function run() {
|
||||
},
|
||||
order: 3,
|
||||
}),
|
||||
packs: createTask({
|
||||
name: `Build tarballs of packages ${chalk.gray('(build-packs)')}`,
|
||||
defaultValue: false,
|
||||
option: '--packs',
|
||||
command: () => {
|
||||
spawn('yarn build-packs');
|
||||
},
|
||||
check: () => getDirectories(join(__dirname, '..', 'packs')).length === 0,
|
||||
order: 5,
|
||||
}),
|
||||
registry: createTask({
|
||||
name: `Run local registry ${chalk.gray('(reg)')}`,
|
||||
defaultValue: false,
|
||||
@ -157,7 +147,7 @@ function run() {
|
||||
|
||||
const groups = {
|
||||
main: ['core'],
|
||||
buildtasks: ['install', 'build', 'manager', 'packs'],
|
||||
buildtasks: ['install', 'build', 'manager'],
|
||||
devtasks: ['dev', 'registry', 'reset'],
|
||||
};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user