uniswap-v2-loader 5.0.23 → 5.0.24
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/.github/workflows/test.yml +1 -1
- package/package.json +15 -13
- package/{default_cache_filename.js → src/default_cache_filename.js} +1 -1
- package/{bin → src}/uniswap-v2-loader +1 -1
- package/logo-dark.svg +0 -3
- package/logo-light.svg +0 -3
- /package/{index.d.ts → src/index.d.ts} +0 -0
- /package/{index.js → src/index.js} +0 -0
- /package/{index.mjs → src/index.mjs} +0 -0
- /package/{loader.js → src/loader.js} +0 -0
|
@@ -45,7 +45,7 @@ jobs:
|
|
|
45
45
|
node --experimental-test-coverage --test \
|
|
46
46
|
--test-reporter=spec --test-reporter-destination=stdout \
|
|
47
47
|
--test-reporter=lcov --test-reporter-destination=lcov.info \
|
|
48
|
-
test*.js
|
|
48
|
+
test/test*.js
|
|
49
49
|
|
|
50
50
|
- name: Upload to Coveralls
|
|
51
51
|
uses: coverallsapp/github-action@v2
|
package/package.json
CHANGED
|
@@ -1,18 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "uniswap-v2-loader",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.24",
|
|
4
4
|
"description": "Uniswap v2 protocol loader",
|
|
5
5
|
"keywords": [
|
|
6
|
+
"DEFI",
|
|
6
7
|
"uniswap-v2",
|
|
7
8
|
"protocol",
|
|
8
9
|
"loader",
|
|
9
10
|
"crypto",
|
|
10
11
|
"ethereum",
|
|
11
|
-
"defi",
|
|
12
12
|
"sushiswap",
|
|
13
13
|
"pancakeswap",
|
|
14
14
|
"shibaswap",
|
|
15
|
-
"
|
|
15
|
+
"radioshack",
|
|
16
|
+
"ethervista",
|
|
17
|
+
"DEX",
|
|
16
18
|
"exchange"
|
|
17
19
|
],
|
|
18
20
|
"homepage": "https://github.com/calp-pro/uniswap-v2-loader#readme",
|
|
@@ -26,23 +28,23 @@
|
|
|
26
28
|
"license": "MIT",
|
|
27
29
|
"author": "Vladimir Spirin (spirin.vladimir@gmail.com)",
|
|
28
30
|
"type": "commonjs",
|
|
29
|
-
"main": "index.js",
|
|
30
|
-
"module": "index.mjs",
|
|
31
|
+
"main": "src/index.js",
|
|
32
|
+
"module": "src/index.mjs",
|
|
31
33
|
"exports": {
|
|
32
34
|
".": {
|
|
33
|
-
"types": "./index.d.ts",
|
|
34
|
-
"require": "./index.js",
|
|
35
|
-
"import": "./index.mjs",
|
|
36
|
-
"default": "./index.js"
|
|
35
|
+
"types": "./src/index.d.ts",
|
|
36
|
+
"require": "./src/index.js",
|
|
37
|
+
"import": "./src/index.mjs",
|
|
38
|
+
"default": "./src/index.js"
|
|
37
39
|
}
|
|
38
40
|
},
|
|
39
|
-
"types": "index.d.ts",
|
|
41
|
+
"types": "src/index.d.ts",
|
|
40
42
|
"scripts": {
|
|
41
|
-
"test": "node --test test.js",
|
|
42
|
-
"test-esm": "node --test test-esm.mjs"
|
|
43
|
+
"test": "node --test test/test.js",
|
|
44
|
+
"test-esm": "node --test test/test-esm.mjs"
|
|
43
45
|
},
|
|
44
46
|
"bin": {
|
|
45
|
-
"uniswap-v2-loader": "
|
|
47
|
+
"uniswap-v2-loader": "src/uniswap-v2-loader"
|
|
46
48
|
},
|
|
47
49
|
"publishConfig": {
|
|
48
50
|
"provenance": true
|
package/logo-dark.svg
DELETED
package/logo-light.svg
DELETED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|