@dynamic-labs/wallet-connector-core 0.16.0 → 0.16.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,4 +1,18 @@
1
1
 
2
+ ### [0.16.2](https://github.com/dynamic-labs/DynamicAuth/compare/v0.16.1...v0.16.2) (2023-04-18)
3
+
4
+
5
+ ### Bug Fixes
6
+
7
+ * type=module requires dot cjs files for running with node ([#1890](https://github.com/dynamic-labs/DynamicAuth/issues/1890)) ([83e4e1e](https://github.com/dynamic-labs/DynamicAuth/commit/83e4e1e7956d9bcb3a29c5c147001241ae2a5345))
8
+
9
+ ### [0.16.1](https://github.com/dynamic-labs/DynamicAuth/compare/v0.16.0...v0.16.1) (2023-04-15)
10
+
11
+
12
+ ### Bug Fixes
13
+
14
+ * stream polyfill error that impacted some setups ([#1876](https://github.com/dynamic-labs/DynamicAuth/issues/1876)) ([7e4ef90](https://github.com/dynamic-labs/DynamicAuth/commit/7e4ef90f372f61f8961f8e6a5dd2a22f06e3d8ba))
15
+
2
16
  ## [0.16.0](https://github.com/dynamic-labs/DynamicAuth/compare/v0.15.0...v0.16.0) (2023-04-14)
3
17
  It is has been a bit over a month since our last stable launch, and here comes V0.16.0!
4
18
  We have some cool features for you and one breaking change that you should be aware of (We try our best to minimize these, but we gotta keep on cleaning legacy stuff).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/wallet-connector-core",
3
- "version": "0.16.0",
3
+ "version": "0.16.2",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/dynamic-labs/DynamicAuth.git",
@@ -13,15 +13,15 @@
13
13
  "homepage": "https://github.com/dynamic-labs/DynamicAuth/main/packages/wallet-connector-core#readme",
14
14
  "author": "Dynamic Labs, Inc.",
15
15
  "license": "MIT",
16
- "main": "./src/index.cjs.js",
17
- "module": "./src/index.es.js",
16
+ "main": "./src/index.cjs",
17
+ "module": "./src/index.js",
18
18
  "types": "./src/index.d.ts",
19
19
  "type": "module",
20
20
  "exports": {
21
21
  ".": {
22
22
  "types": "./src/index.d.ts",
23
- "import": "./src/index.es.js",
24
- "require": "./src/index.cjs.js"
23
+ "import": "./src/index.js",
24
+ "require": "./src/index.cjs"
25
25
  },
26
26
  "./package.json": "./package.json"
27
27
  }
@@ -2,7 +2,7 @@
2
2
 
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
- var WalletConnector = require('./lib/WalletConnector.cjs.js');
5
+ var WalletConnector = require('./lib/WalletConnector.cjs');
6
6
 
7
7
 
8
8
 
package/src/index.js ADDED
@@ -0,0 +1 @@
1
+ export { Chains } from './lib/WalletConnector.js';
package/src/index.es.js DELETED
@@ -1 +0,0 @@
1
- export { Chains } from './lib/WalletConnector.es.js';