add rollup as devDependency; use pnpm; other adjustments
This commit is contained in:
parent
053353775f
commit
b28b0fe5d1
2 changed files with 19 additions and 3 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -1 +1,4 @@
|
|||
/dist/
|
||||
/node_modules/
|
||||
/package-locak.json
|
||||
/shrinkwrap.yaml
|
||||
|
|
19
package.json
19
package.json
|
@ -2,10 +2,17 @@
|
|||
"name": "defiler",
|
||||
"version": "0.15.3",
|
||||
"description": "A small, strange building block",
|
||||
"keywords": ["build", "framework", "async", "watch"],
|
||||
"keywords": [
|
||||
"build",
|
||||
"framework",
|
||||
"async",
|
||||
"watch"
|
||||
],
|
||||
"main": "./dist/index.cjs.js",
|
||||
"module": "./dist/index.es.js",
|
||||
"files": ["dist"],
|
||||
"files": [
|
||||
"dist"
|
||||
],
|
||||
"engines": {
|
||||
"node": ">=8"
|
||||
},
|
||||
|
@ -18,5 +25,11 @@
|
|||
"bugs": {
|
||||
"url": "https://github.com/Conduitry/defiler/issues"
|
||||
},
|
||||
"homepage": "https://cndtr.io/defiler/"
|
||||
"homepage": "https://cndtr.io/defiler/",
|
||||
"devDependencies": {
|
||||
"rollup": "*"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "rollup -c"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue