Release 0.15.0

This commit is contained in:
Yarmo Mackenbach 2022-02-25 21:42:23 +01:00
parent 41c41236c7
commit 6447d5a43f
No known key found for this signature in database
GPG key ID: 37367F4AF4087AD1
4 changed files with 7 additions and 11079 deletions

View file

@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased] ## [Unreleased]
## [0.15.0] - 2022-02-25
### Added ### Added
- Examples - Examples
- Browser entrypoint to package.json - Browser entrypoint to package.json

11079
dist/doip.js vendored

File diff suppressed because one or more lines are too long

2
dist/doip.min.js vendored

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
{ {
"name": "doipjs", "name": "doipjs",
"version": "0.14.0", "version": "0.15.0",
"description": "Decentralized OpenPGP Identity Proofs library in Node.js", "description": "Decentralized OpenPGP Identity Proofs library in Node.js",
"main": "./src/index.js", "main": "./src/index.js",
"browser": "./dist/doip.min.js", "browser": "./dist/doip.min.js",
@ -40,6 +40,7 @@
"standard": "^16.0.3" "standard": "^16.0.3"
}, },
"scripts": { "scripts": {
"release": "yarn run test && yarn run release:bundle && yarn run release:minify",
"release:bundle": "./node_modules/.bin/browserify ./src/index.js --standalone doip -x openpgp -x jsdom -x @xmpp/client -x @xmpp/debug -x irc-upd -o ./dist/doip.js", "release:bundle": "./node_modules/.bin/browserify ./src/index.js --standalone doip -x openpgp -x jsdom -x @xmpp/client -x @xmpp/debug -x irc-upd -o ./dist/doip.js",
"release:minify": "./node_modules/.bin/minify ./dist/doip.js > ./dist/doip.min.js", "release:minify": "./node_modules/.bin/minify ./dist/doip.js > ./dist/doip.min.js",
"license:check": "./node_modules/.bin/license-check-and-add check", "license:check": "./node_modules/.bin/license-check-and-add check",