Skip to content
This repository was archived by the owner on Mar 9, 2025. It is now read-only.

Recompile on save #42

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
dist
node_modules
.history
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"main": "lib/index.js",
"scripts": {
"build": "babel lib -d dist",
"start": "npm run build && nodemon dist/index.js",
"start": "npm run build && nodemon --watch lib --exec npm run serve",
"serve": "npm run build && node dist/index.js",
"test": "npm run build && mocha --require babel-register"
},
Expand Down