Skip to content

Commit

Permalink
fix: Correct package entry point
Browse files Browse the repository at this point in the history
To correct the package entry point, modify the value of "main" field
in the "package.json".
  • Loading branch information
ender503 committed Jul 1, 2019
1 parent d59a59a commit 753c3f9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "1.1.1",
"description": "Core functionality to interact with TangleID",
"author": "TangleID Developers",
"main": "lib/index.js",
"main": "lib/core/src/index.js",
"typings": "typings/core/src",
"scripts": {
"test": "jest -c ../../jest.config.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/credential/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "1.0.2",
"description": "Utilities for generating credentials",
"author": "TangleID Developers",
"main": "lib/index.js",
"main": "lib/credential/src/index.js",
"typings": "typings/credential/src",
"scripts": {
"test": "jest -c ../../jest.config.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/did/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "1.1.1",
"description": "Utilities for the coding of decentralized identifiers",
"author": "TangleID Developers",
"main": "lib/index.js",
"main": "lib/did/src/index.js",
"typings": "typings/did/src",
"scripts": {
"test": "jest -c ../../jest.config.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/jsonld/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "1.0.2",
"description": "Utilities for processing JSON-LD format",
"author": "TangleID Developers",
"main": "lib/index.js",
"main": "lib/jsonld/src/index.js",
"typings": "typings/jsonld/src",
"scripts": {
"test": "jest -c ../../jest.config.js",
Expand Down

0 comments on commit 753c3f9

Please sign in to comment.