bricolo
Version:
A development tool for running PHP, JS, and Sass in parallel.
24 lines • 512 B
JSON
{
"phpServer": {
"host": "localhost",
"port": 8000,
"command": "php -S {host}:{port} -t dist/"
},
"jsBuild": {
"entry": "src/js/app.ts",
"output": "dist/js/bundle.js"
},
"sassBuild": {
"entry": "src/scss/styles.scss",
"output": "dist/css/style.min.css"
},
"watch": {
"directories": [
"src/**/*"
]
},
"server": {
"host": "localhost",
"port": 8080
}
}