@dynamic-labs/wallet-connector-core 0.16.1 → 0.16.3

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.3](https://github.com/dynamic-labs/DynamicAuth/compare/v0.16.2...v0.16.3) (2023-04-19)
3
+
4
+
5
+ ### Features
6
+
7
+ * add wallet filter by chain name ([#1878](https://github.com/dynamic-labs/DynamicAuth/issues/1878)) ([3587209](https://github.com/dynamic-labs/DynamicAuth/commit/3587209b9bd7305224dac4ebc91dba85ddddcf99))
8
+
9
+ ### [0.16.2](https://github.com/dynamic-labs/DynamicAuth/compare/v0.16.1...v0.16.2) (2023-04-18)
10
+
11
+
12
+ ### Bug Fixes
13
+
14
+ * 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))
15
+
2
16
  ### [0.16.1](https://github.com/dynamic-labs/DynamicAuth/compare/v0.16.0...v0.16.1) (2023-04-15)
3
17
 
4
18
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/wallet-connector-core",
3
- "version": "0.16.1",
3
+ "version": "0.16.3",
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';