essential-eth 0.5.13-next.1 โ 0.5.13-next.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/dist/cjs/index.umd.js +1 -1
- package/dist/cjs/index.umd.js.map +1 -1
- package/dist/cjs/logger/package-version.d.ts +1 -1
- package/dist/cjs/logger/package-version.js +1 -1
- package/dist/esm/logger/package-version.d.ts +1 -1
- package/dist/esm/logger/package-version.js +1 -1
- package/package.json +4 -4
- package/readme.md +2 -2
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "0.5.13-next.
|
|
1
|
+
export declare const version = "0.5.13-next.2";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "0.5.13-next.
|
|
1
|
+
export declare const version = "0.5.13-next.2";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export const version = '0.5.13-next.
|
|
1
|
+
export const version = '0.5.13-next.2';
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "essential-eth",
|
|
3
3
|
"description": "Ultralight JS for Ethereum",
|
|
4
|
-
"version": "0.5.13-next.
|
|
4
|
+
"version": "0.5.13-next.2",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"private": false,
|
|
8
|
-
"source": "src/index.ts",
|
|
9
8
|
"main": "./dist/cjs/index.js",
|
|
10
9
|
"module": "./dist/esm/index.js",
|
|
11
|
-
"
|
|
10
|
+
"browser": "./dist/cjs/index.umd.js",
|
|
11
|
+
"source": "src/index.ts",
|
|
12
12
|
"files": [
|
|
13
13
|
"dist/"
|
|
14
14
|
],
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"update-deps": "sh ./scripts/pre-commit.sh",
|
|
54
54
|
"pre-commit": "run-p build:chains-info update-deps",
|
|
55
55
|
"prepare": "husky install",
|
|
56
|
-
"version": "npx genversion --es6 src/logger/package-version.ts && git add src/logger/package-version.ts",
|
|
56
|
+
"version": "npx genversion --es6 src/logger/package-version.ts && git add src/logger/package-version.ts readme.md",
|
|
57
57
|
"postversion": "git push --follow-tags",
|
|
58
58
|
"prepublishOnly": "npm run build",
|
|
59
59
|
"doc": "typedoc"
|
package/readme.md
CHANGED
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
- [Many more](src/providers/utils/chains-info.ts)
|
|
40
40
|
- ๐งช Strongly tested
|
|
41
41
|
- ๐ฒ Tree-shaking and no side-effects
|
|
42
|
-
- ๐ All common JS versions (CommonJS, ESM, UMD
|
|
42
|
+
- ๐ All common JS versions (CommonJS, ESM, & UMD)
|
|
43
43
|
- โ
Node 18, 16, 14, & 12
|
|
44
44
|
- โ
Web
|
|
45
45
|
|
|
@@ -124,7 +124,7 @@ Browsers:
|
|
|
124
124
|
|
|
125
125
|
```html
|
|
126
126
|
<!-- index.html -->
|
|
127
|
-
<script src="https://unpkg.com/essential-eth@0.5.13-next.
|
|
127
|
+
<script src="https://unpkg.com/essential-eth@0.5.13-next.2"></script>
|
|
128
128
|
```
|
|
129
129
|
|
|
130
130
|
<!-- โ๏ธ AUTO-GENERATED-CONTENT:END (UNPKG_SCRIPT_TAG) -->
|