-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[DEV-4147] Feature - Dev playground #28
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍 Build & Prettier are still failing though. Please address it before merging.
-cT ANSI -t "[playground] " -l "npm start --prefix packages/playground" \ | ||
-cT ANSI -t "[slate-renderer] " -l "npm run build:watch --prefix packages/slate-renderer" \ | ||
-cT ANSI -t "[docx-cleaner] " -l "npm run build:watch --prefix packages/docx-cleaner" \ | ||
-cT ANSI -t "[slate-commons] " -l "npm run build:watch --prefix packages/slate-commons" \ | ||
-cT ANSI -t "[slate-editor] " -l "npm run build:watch --prefix packages/slate-editor" \ | ||
-cT ANSI -t "[slate-hyperscript] " -l "npm run build:watch --prefix packages/slate-hyperscript" \ | ||
-cT ANSI -t "[slate-lists] " -l "npm run build:watch --prefix packages/slate-lists" \ | ||
-cT ANSI -t "[slate-types] " -l "npm run build:watch --prefix packages/slate-types"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we should use lerna here, e.g.
lerna run build:watch --scope @prezly/slate-types
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How is this better?
For this to work you would need to have lerna installed globally. Otherwise we would need to specify each watch script in root package.json.
No description provided.