add optimized flag && cleanup

This commit is contained in:
Norbert de Langen 2022-01-25 16:24:07 +01:00
parent 3d3e2ad914
commit c5ee7220d3
No known key found for this signature in database
GPG Key ID: FD0E78AF9A837762
2 changed files with 3 additions and 14 deletions

View File

@ -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
View File

@ -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'],
};