@chain-registry/workflows 1.47.1 → 1.47.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/esm/utils.js +1 -1
- package/package.json +5 -4
- package/registry.d.ts +1 -1
package/esm/utils.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chain-registry/workflows",
|
|
3
|
-
"version": "1.47.
|
|
3
|
+
"version": "1.47.3",
|
|
4
4
|
"description": "Chain Registry Workflows",
|
|
5
5
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
6
6
|
"homepage": "https://github.com/cosmology-tech/chain-registry",
|
|
@@ -21,9 +21,10 @@
|
|
|
21
21
|
},
|
|
22
22
|
"scripts": {
|
|
23
23
|
"copy": "copyfiles -f LICENSE README.md package.json dist",
|
|
24
|
-
"clean": "
|
|
24
|
+
"clean": "rimraf dist/**",
|
|
25
25
|
"prepare": "npm run build",
|
|
26
26
|
"build": "npm run clean; tsc; tsc -p tsconfig.esm.json; npm run copy",
|
|
27
|
+
"lint": "eslint . --fix",
|
|
27
28
|
"test": "jest",
|
|
28
29
|
"test:watch": "jest --watch"
|
|
29
30
|
},
|
|
@@ -31,7 +32,7 @@
|
|
|
31
32
|
"@types/sha.js": "^2.4.0"
|
|
32
33
|
},
|
|
33
34
|
"dependencies": {
|
|
34
|
-
"@chain-registry/interfaces": "^0.46.
|
|
35
|
+
"@chain-registry/interfaces": "^0.46.3",
|
|
35
36
|
"ajv": "^8.12.0",
|
|
36
37
|
"ajv-formats": "^3.0.1",
|
|
37
38
|
"bignumber.js": "9.1.2",
|
|
@@ -51,5 +52,5 @@
|
|
|
51
52
|
"cosmos",
|
|
52
53
|
"interchain"
|
|
53
54
|
],
|
|
54
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "c9af8b461cb1103d99af752d6efc7dbe00f52f7c"
|
|
55
56
|
}
|
package/registry.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { AssetList, Chain, IBCData, MemoKeys, Versions } from '@chain-registry/interfaces';
|
|
2
|
-
import { JSONSchema } from
|
|
2
|
+
import { JSONSchema } from 'schema-typescript';
|
|
3
3
|
export type SchemaMapper = ([title, schema]: [string, JSONSchemaContent<any>]) => any;
|
|
4
4
|
export interface JSONSchemaContent<T> {
|
|
5
5
|
$schemaFile: string;
|