BookList app without frameworks
Example: https://newbornfrontender.github.io/modern-js-booklist-app/
> yarn
> yarn <command name>
Command | Description |
---|---|
clean
|
Removing selected files in public dir |
pretty
|
Formatting code with Prettier |
serve
|
Starting development server with Serve |
start
|
Run parallel scripts: serve and compile:dev:css , compile:dev:js with -w flag
|
build
|
Run sequentially scripts: clean , compile:prod:css and compile:prod:js
|
compile:dev:css
|
Compile all CSS code with PostCSS in dev mode |
compile:dev:js
|
Compile all JS code with Rollup and Babel in dev mode |
compile:prod:css
|
All as in compile:dev:css but minify code and add map file
|
compile:prod:js
|
All as in compile:dev:js but minify code and add map file
|