4 lines
174 B
Bash
Executable file
4 lines
174 B
Bash
Executable file
#!/bin/bash
|
|
mkdir -p public
|
|
./node_modules/.bin/stylus -o public/ -c --include-css src/client/styles
|
|
./node_modules/.bin/browserify src/client/app.js --outfile public/app.js
|