We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9616722 commit 01c7051Copy full SHA for 01c7051
package.json
@@ -7,10 +7,16 @@
7
"type": "git",
8
"url": "git+https://github.com/github/include-fragment-element.git"
9
},
10
+ "main": "dist/index-umd.js",
11
+ "files": [
12
+ "dist"
13
+ ],
14
"scripts": {
15
"build": "babel include-fragment-element.js -o dist/index-umd.js",
- "clean": "rm -rf ./node_modules",
16
+ "clean": "rm -rf ./node_modules ./dist",
17
"lint": "eslint include-fragment-element.js test/*.js",
18
+ "prebuild": "npm run clean && mkdir dist",
19
+ "prepublishOnly": "npm run build",
20
"pretest": "npm run lint",
21
"test": "karma start ./test/karma.config.js"
22
0 commit comments