0.13.0 • Published 8 years ago
@new/project-web v0.13.0
@new/project-web
Create a JS + SCSS + Make project for the web.
The package does the following:
- Adds
Makefile - Adds
rollup.config.js - Adds
web/app.js - Adds
web/app.scss - Adds
web/index.html - Adds
web/assets - Edits
package.json - Edits
.gitignore - Runs
npm ito install new deps
Works well with @new/project
Usage
Beware: This is a simple shell script, and has ability to overwrite files. It tries to be interactive as possible, but know what the script is doing before you decide to execute it.
Use the package with npx:
$ npx @new/project-web(When using npm instead you still need npx installed)
The Makefile
The commands tasks are:
make: Buildwebtodistwith sourcemaps.make minify: Build then minifydistwith sourcemaps.make package: Builds, minifies, then creates.tar.gzfile inpackages/.make start: Create a dev server and watchwebfor changes.
Customize
To customize see files/, bin/, and package.json. Things to notice:
- Everything at the base of
files/is prefixed with_, e.g._.gitignoreso the files don't conflict with source control or other tools. - There is a confirm prompt before the script can run.
- You have helper vars defined at the top:
$SOURCEis thefiles/directory of this script$DESTis the directory where the files are being wrote$ROOTis thepackage.jsondirectory the script
- Use
npxto execute npm dependencies in your shell scripts. - The script should be tailored towards you, not accept a lot of inputs.
Besides this, it is simply a bash script you can use.
Extras
Also check out the projects:
@new/projectCreate a basic JS project.@jamen/watch-execFile watching utility.dist-jsCreate dist version of your JS.dist-cssCreate dist version of your CSS.