add build process
This commit is contained in:
parent
223ab2758a
commit
24770f2e44
2 changed files with 20 additions and 3 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -1 +1,3 @@
|
|||
/dist/
|
||||
/node_modules/
|
||||
/package-lock.json
|
||||
|
|
21
package.json
21
package.json
|
@ -2,10 +2,19 @@
|
|||
"name": "cheap-watch",
|
||||
"version": "0.2.0",
|
||||
"description": "If it works, why use something else?",
|
||||
"keywords": ["async", "asynchronous", "file", "watch", "watcher"],
|
||||
"keywords": [
|
||||
"async",
|
||||
"asynchronous",
|
||||
"file",
|
||||
"watch",
|
||||
"watcher"
|
||||
],
|
||||
"main": "./dist/CheapWatch.cjs.js",
|
||||
"module": "./CheapWatch.js",
|
||||
"files": ["CheapWatch.js", "dist"],
|
||||
"files": [
|
||||
"CheapWatch.js",
|
||||
"dist"
|
||||
],
|
||||
"engines": {
|
||||
"node": ">=8"
|
||||
},
|
||||
|
@ -18,5 +27,11 @@
|
|||
"bugs": {
|
||||
"url": "https://github.com/Conduitry/cheap-watch/issues"
|
||||
},
|
||||
"homepage": "https://cndtr.io/cheap-watch/"
|
||||
"homepage": "https://cndtr.io/cheap-watch/",
|
||||
"dependencies": {
|
||||
"rollup": "*"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "rollup -c"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue