reef-knot 0.1.2 → 0.3.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 +24 -1
  2. package/package.json +5 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,28 @@
1
1
  # reef-knot
2
2
 
3
+ ## 0.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - Add Metrics Events for clicks on wallets connection buttons
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies
12
+ - @reef-knot/connect-wallet-modal@0.3.0
13
+
14
+ ## 0.2.0
15
+
16
+ ### Minor Changes
17
+
18
+ - Add Metrics Events support
19
+
20
+ ### Patch Changes
21
+
22
+ - Updated dependencies
23
+ - @reef-knot/connect-wallet-modal@0.2.0
24
+ - @reef-knot/web3-react@0.2.0
25
+
3
26
  ## 0.1.2
4
27
 
5
28
  ### Patch Changes
@@ -23,5 +46,5 @@
23
46
  ### Patch Changes
24
47
 
25
48
  - Updated dependencies
26
- - @reef-knot/connect-wallet-modal@1.0.0
49
+ - @reef-knot/connect-wallet-modal@0.1.0
27
50
  - @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.3.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.3.0",
18
+ "@reef-knot/web3-react": "0.2.0"
18
19
  }
19
20
  }