reef-knot 0.1.2 → 0.2.0

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +13 -1
  2. package/package.json +5 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # reef-knot
2
2
 
3
+ ## 0.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - Add Metrics Events support
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies
12
+ - @reef-knot/connect-wallet-modal@0.2.0
13
+ - @reef-knot/web3-react@0.2.0
14
+
3
15
  ## 0.1.2
4
16
 
5
17
  ### Patch Changes
@@ -23,5 +35,5 @@
23
35
  ### Patch Changes
24
36
 
25
37
  - Updated dependencies
26
- - @reef-knot/connect-wallet-modal@1.0.0
38
+ - @reef-knot/connect-wallet-modal@0.1.0
27
39
  - @reef-knot/web3-react@0.1.0
package/package.json CHANGED
@@ -1,19 +1,20 @@
1
1
  {
2
2
  "name": "reef-knot",
3
- "version": "0.1.2",
3
+ "version": "0.2.0",
4
4
  "main": "dist/cjs/index.js",
5
5
  "module": "dist/esm/index.js",
6
6
  "types": "dist/esm/index.d.ts",
7
7
  "license": "MIT",
8
8
  "publishConfig": {
9
+ "registry": "https://registry.npmjs.org/",
9
10
  "access": "public"
10
11
  },
11
12
  "scripts": {
12
13
  "build": "rollup -c",
13
- "dev": "rollup -c -w"
14
+ "dev": "dev=on rollup -c -w"
14
15
  },
15
16
  "dependencies": {
16
- "@reef-knot/connect-wallet-modal": "0.1.1",
17
- "@reef-knot/web3-react": "0.1.0"
17
+ "@reef-knot/connect-wallet-modal": "0.2.0",
18
+ "@reef-knot/web3-react": "0.2.0"
18
19
  }
19
20
  }