Skip to content

Commit

Permalink
chore(Scripts): fix microbundle
Browse files Browse the repository at this point in the history
  • Loading branch information
dawnerd committed Nov 16, 2020
1 parent e903ba8 commit 95acc05
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,22 @@
"name": "domodule",
"version": "7.0.0",
"description": "Class based modules",
"main": "dist/domodule.modern.js",
"source": "lib/domodule.js",
"main": "dist/domodule.js",
"module": "dist/domodule.module.js",
"unpkg": "dist/domodule.umd.js",
"esmodule": "dist/domodule.modern.js",
"keywords": [
"module",
"browser"
],
"scripts": {
"start": "microbundle lib/domodule.js",
"build": "microbundle lib/domodule.js",
"dev": "microbundle watch lib/domodule.js",
"build": "microbundle",
"dev": "microbundle watch",
"test": "jest",
"pretest": "microbundle lib/domodule.js",
"prepublishOnly": "microbundle lib/domodule.js",
"lint": "eslint ./lib ./test"
"pretest": "microbundle",
"prepublishOnly": "microbundle",
"lint": "microbundle && eslint ./lib ./test"
},
"watch": {
"lib/*.js": [
Expand Down

0 comments on commit 95acc05

Please sign in to comment.