diff options
Diffstat (limited to 'packages')
-rw-r--r-- | packages/0x.js/CHANGELOG.json | 9 | ||||
-rw-r--r-- | packages/0x.js/package.json | 4 |
2 files changed, 11 insertions, 2 deletions
diff --git a/packages/0x.js/CHANGELOG.json b/packages/0x.js/CHANGELOG.json index 346938958..f242b5496 100644 --- a/packages/0x.js/CHANGELOG.json +++ b/packages/0x.js/CHANGELOG.json @@ -1,5 +1,14 @@ [ { + "version": "1.0.1-rc.5", + "changes": [ + { + "note": + "Fix `main` and `types` package.json entries so that they point to the new location of index.d.ts and index.js" + } + ] + }, + { "version": "1.0.1-rc.4", "changes": [ { diff --git a/packages/0x.js/package.json b/packages/0x.js/package.json index b5cb6c7e4..484342422 100644 --- a/packages/0x.js/package.json +++ b/packages/0x.js/package.json @@ -12,8 +12,8 @@ "tokens", "exchange" ], - "main": "lib/src/index.js", - "types": "lib/src/index.d.ts", + "main": "lib/index.js", + "types": "lib/index.d.ts", "scripts": { "watch_without_deps": "tsc -w", "build": "yarn build:all", |