mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
add optimized flag && cleanup
This commit is contained in:
parent
3d3e2ad914
commit
c5ee7220d3
@ -55,7 +55,6 @@
|
|||||||
"bootstrap": "node ./scripts/bootstrap.js",
|
"bootstrap": "node ./scripts/bootstrap.js",
|
||||||
"build": "node ./scripts/build-package.js",
|
"build": "node ./scripts/build-package.js",
|
||||||
"build-manager": "node -r esm ./scripts/build-manager.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",
|
"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": "pr-log --sloppy --cherry-pick",
|
||||||
"changelog:next": "pr-log --sloppy --since-prerelease",
|
"changelog:next": "pr-log --sloppy --since-prerelease",
|
||||||
|
16
scripts/bootstrap.js
vendored
16
scripts/bootstrap.js
vendored
@ -109,9 +109,9 @@ function run() {
|
|||||||
command: () => {
|
command: () => {
|
||||||
log.info(prefix, 'prepare');
|
log.info(prefix, 'prepare');
|
||||||
spawn(
|
spawn(
|
||||||
`nx run-many --target=prepare --all --parallel ${
|
`nx run-many --target="prepare" --all --parallel ${
|
||||||
process.env.CI ? `--max-parallel=${maxConcurrentTasks}` : ''
|
process.env.CI ? `--max-parallel=${maxConcurrentTasks}` : ''
|
||||||
}`
|
} -- --optimized`
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
order: 2,
|
order: 2,
|
||||||
@ -125,16 +125,6 @@ function run() {
|
|||||||
},
|
},
|
||||||
order: 3,
|
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({
|
registry: createTask({
|
||||||
name: `Run local registry ${chalk.gray('(reg)')}`,
|
name: `Run local registry ${chalk.gray('(reg)')}`,
|
||||||
defaultValue: false,
|
defaultValue: false,
|
||||||
@ -157,7 +147,7 @@ function run() {
|
|||||||
|
|
||||||
const groups = {
|
const groups = {
|
||||||
main: ['core'],
|
main: ['core'],
|
||||||
buildtasks: ['install', 'build', 'manager', 'packs'],
|
buildtasks: ['install', 'build', 'manager'],
|
||||||
devtasks: ['dev', 'registry', 'reset'],
|
devtasks: ['dev', 'registry', 'reset'],
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user