studiometa / create-wordpress-project

A generator to kickstart your WordPress project in a few seconds! ⚡
MIT License
6 stars 3 forks source link

Simpler build tools #8

Closed titouanmathis closed 4 years ago

titouanmathis commented 4 years ago

This PR replace the heavy Gulp x Webpack configuration with a lighter Parcel configuration. Its main objective is too streamline the dev/build process with the following scripts available:

And that's it! No more multiple Gulp tasks and bugs.

Changed

Added

Improved

Regression


You can test the template by cloning the repository and running the cli.js file:

# Clone the project
git clone git@github.com:studiometa/create-wordpress-project.git
cd create-wordpress-project/

# Test it
node cli.js ~/Desktop/test

I will push a PR with the same dev/build scripts logic based on Laravel Mix to be able to compare the 2 solutions.


This PR is a clone of #6 which was closed because the branch it was based on has been deleted.