New Build Process
This section will explain the new build process since the refactor.
The new package.json contains the following scripts:
I will briefly go over the important scripts and what each script does.
build runs the build.js script, bundles scss and compiles scss bundle to css
build-demo:watch builds the demo application in watch mode
serve serves the demo application via BrowserSync
start runs build-demo:watch & serve
test runs your tests
integration builds a small sandbox in which to run E2E specs
The relevant scripts for you, the developer, are going to be build and start. You will use build to build new versions of the application and start to build the demo application so you can test your new components and create examples for them.
Last updated