Skip to content
This repository was archived by the owner on Oct 10, 2022. It is now read-only.

Commit d8bf61a

Browse files
committed
A few packaging tweaks
1 parent b273475 commit d8bf61a

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,10 @@ Optional `opts` include:
167167
}
168168
```
169169

170+
## UMD Builds
171+
172+
A UMD build is provided for your convenience, however browser support is still experimental. Contributions to improve browser support are welcome.
173+
170174
## Contributing
171175

172176
See [CONTRIBUTING.md](CONTRIBUTING.md) for more info on how to make contributions to this project.

package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
"npm-run-all": "^4.1.3",
8080
"nyc": "^13.0.1",
8181
"prettier": "^1.13.7",
82-
"tape": "^4.9.1",
82+
"rimraf": "^2.6.2",
8383
"webpack": "^4.20.2",
8484
"webpack-cli": "^3.1.2"
8585
},
@@ -102,15 +102,16 @@
102102
},
103103
"scripts": {
104104
"build": "run-s build:*",
105-
"build:deptree": "depcruise --exclude '^node_modules' --output-type dot src | dot -T svg > site/dist/dependencygraph.svg",
106105
"build:webpack": "webpack",
107106
"ci": "run-s test build",
107+
"deptree": "depcruise --exclude '^node_modules' --output-type dot src | dot -T svg > site/dist/dependencygraph.svg",
108108
"prepublishOnly": "npm run build:webpack",
109109
"report": "nyc report --reporter=text-lcov | coveralls",
110110
"test": "run-s test:*",
111111
"test:ava": "nyc --reporter=lcov ava --verbose && nyc report",
112112
"test:deps": "dependency-check ./package.json --entry \"src/**/!(*.test).js\" --unused --missing --no-dev --no-peer",
113113
"test:lint": "eslint src",
114-
"watch": "nyc --reporter=lcov ava --watch"
114+
"watch": "nyc --reporter=lcov ava --watch",
115+
"clean": "rimraf dist coverage"
115116
}
116117
}

0 commit comments

Comments
 (0)