Closed f1yn closed 7 years ago
I removed the Makefile from example01 and switched to inline npm scripts. npm start now builds and serves the project, npm run build will build the dist.js file, and npm run watch starts Rollup with the watcher.
example01
npm start
npm run build
dist.js
npm run watch
I've addressed those comments in the latest commit: https://github.com/stasm/innerself/pull/3/commits/a572f8d9c2f6b474bb27ce55c19eaa37f185e12c
Sweet, thanks!
I removed the Makefile from
example01
and switched to inline npm scripts.npm start
now builds and serves the project,npm run build
will build thedist.js
file, andnpm run watch
starts Rollup with the watcher.