Skip to content

Commit

Permalink
fix browser field
Browse files Browse the repository at this point in the history
  • Loading branch information
shrpne committed Feb 28, 2019
1 parent b004448 commit ebeec3d
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 17 deletions.
8 changes: 2 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
(modification: no type change headlines) and this project adheres to
[Semantic Versioning](http://semver.org/spec/v2.0.0.html).
## 3.0.1 - 2019-02-28
- fix package.json "browser" field

## 3.0.0 - 2019-02-27
Align package structure to other minterjs packages.
Expand Down
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 7 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
{
"name": "minterjs-wallet",
"version": "3.0.0",
"version": "3.0.1",
"description": "Utilities for handling Minter keys",
"main": "dist/cjs/index.js",
"browser": "dist/index.js",
"module": "src/index.js",
"browser": {
"./dist/cjs/index.js": "./dist/index.js"
},
"unpkg": "dist/index.min.js",
"files": [
"/dist/",
"/src/"
Expand Down Expand Up @@ -49,7 +52,7 @@
"elliptic": "github:xg-wang/elliptic#8a6bb93d751559db43036a2670825af215d0aa43",
"ethereumjs-util": "^6.1.0",
"hdkey": "^1.1.1",
"minterjs-util": "0.6.0",
"minterjs-util": "0.6.1",
"safe-buffer": "^5.1.2"
},
"devDependencies": {
Expand All @@ -65,7 +68,7 @@
"jest": "^24.1.0",
"jest-environment-jsdom": "^24.0.0",
"pre-commit": "^1.2.2",
"rollup": "^1.3.1",
"rollup": "^1.3.2",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.2.1",
"rollup-plugin-json": "^3.1.0",
Expand Down

0 comments on commit ebeec3d

Please sign in to comment.