You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to be able to run dev mode in any of the alley-scripts/packages/* while also running dev mode in the alley-scripts/plugin so that I can work on the scripts without having to run npm run build and refresh the page in order to see the changes.
Documentation also needs to be provided in order to for developers to properly get set up to develop in the plugin accordingly.
Use Case
Example:
In the directory alley-scripts/packages/block-editor-tools run npm run dev in the command line to run Webpack development mode with the watch flag so that the files will recompile whenever they change. webpack --mode=development --watch.
Simultaneously in the alley-scripts/plugin directory I want to run npm run dev or npm run start while importing or linking with npm link the block-editor-tools to see my changes when the files change.
The text was updated successfully, but these errors were encountered:
Description
I would like to be able to run dev mode in any of the
alley-scripts/packages/*
while also running dev mode in thealley-scripts/plugin
so that I can work on the scripts without having to runnpm run build
and refresh the page in order to see the changes.Documentation also needs to be provided in order to for developers to properly get set up to develop in the plugin accordingly.
Use Case
Example:
In the directory
alley-scripts/packages/block-editor-tools
runnpm run dev
in the command line to run Webpack development mode with the watch flag so that the files will recompile whenever they change.webpack --mode=development --watch
.Simultaneously in the
alley-scripts/plugin
directory I want to runnpm run dev
ornpm run start
while importing or linking with npm link theblock-editor-tools
to see my changes when the files change.The text was updated successfully, but these errors were encountered: