react-typescript-yarn-lerna-monorepo-eslint-prettier-boilerplate icon indicating copy to clipboard operation
react-typescript-yarn-lerna-monorepo-eslint-prettier-boilerplate copied to clipboard

Simplify root package.json scripts to use globs

Open MarkAPhillips opened this issue 4 years ago • 1 comments

The following scripts can be simplified from

"start:www": "lerna run start --scope=\"@web/shared\" --scope=\"@web/utils\" --scope=\"@web/www\" --parallel"

to

"start:www": "lerna run start --scope=@web/{shared,utils,www} --parallel"

One question in relation to this as they run all packages in scope are they required?

MarkAPhillips avatar Aug 19 '20 08:08 MarkAPhillips

thanks, I learn a new thing.

plh97 avatar Jan 04 '23 03:01 plh97