@chain-registry/workflows 1.47.2 → 1.47.4

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/index.js CHANGED
@@ -1,4 +1,4 @@
1
- export * from './build';
2
1
  export * from './registry';
2
+ export * from './registry-builder';
3
3
  export * from './schema-typescript';
4
4
  export * from './validator';
package/esm/utils.js CHANGED
@@ -1,4 +1,4 @@
1
- import { toCamelCase, toPascalCase } from "schema-typescript";
1
+ import { toCamelCase, toPascalCase } from 'schema-typescript';
2
2
  export const camelCase = (str) => {
3
3
  if (str === 'IBCData') {
4
4
  return 'ibcData';
package/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
- export * from './build';
2
1
  export * from './registry';
2
+ export * from './registry-builder';
3
3
  export * from './schema-typescript';
4
4
  export * from './validator';
5
5
  export { JSONSchema } from 'schema-typescript';
package/index.js CHANGED
@@ -14,7 +14,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
- __exportStar(require("./build"), exports);
18
17
  __exportStar(require("./registry"), exports);
18
+ __exportStar(require("./registry-builder"), exports);
19
19
  __exportStar(require("./schema-typescript"), exports);
20
20
  __exportStar(require("./validator"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chain-registry/workflows",
3
- "version": "1.47.2",
3
+ "version": "1.47.4",
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,17 +21,19 @@
21
21
  },
22
22
  "scripts": {
23
23
  "copy": "copyfiles -f LICENSE README.md package.json dist",
24
- "clean": "del dist/**",
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
  },
30
31
  "devDependencies": {
32
+ "@interweb/casing": "0.6.0",
31
33
  "@types/sha.js": "^2.4.0"
32
34
  },
33
35
  "dependencies": {
34
- "@chain-registry/interfaces": "^0.46.2",
36
+ "@chain-registry/interfaces": "^0.46.4",
35
37
  "ajv": "^8.12.0",
36
38
  "ajv-formats": "^3.0.1",
37
39
  "bignumber.js": "9.1.2",
@@ -51,5 +53,5 @@
51
53
  "cosmos",
52
54
  "interchain"
53
55
  ],
54
- "gitHead": "9e09944a2a5b14f3fb6e93feb28ba324dd781c83"
56
+ "gitHead": "c619fb64182b1553c6e56e8dfb7a59d5b74e3f0f"
55
57
  }
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 "schema-typescript";
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;
File without changes
File without changes
File without changes