This document serves as an instruction manual for how to build the project during development.
Open a terminal window and navigate inside the project folder.
Enter:
npm install
Wait for the process to finish, to ensure you have npm/npx installed.
Edit files as usual.
Have Webpack watch the files and compile as necessary:
npx webpack --watch
The files will be automatically updated for you.
If you need to build a single time, you can use the command:
npx webpack
This project was built by following these tutorials:
- https://calderaforms.com/2019/01/convert-shortcode-gutenberg-block/
- https://css-tricks.com/learning-gutenberg-1-series-intro/ ** <-- Steps 3 and 7 are the closest to this project