@chain-registry/cli 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/package.js CHANGED
@@ -1,5 +1,5 @@
1
- import { existsSync, readFileSync } from "fs";
2
- import { dirname, join } from "path";
1
+ import { existsSync, readFileSync } from 'fs';
2
+ import { dirname, join } from 'path';
3
3
  // need to search due to the dist/ folder and src/, etc.
4
4
  function findPackageJson(currentDir) {
5
5
  const filePath = join(currentDir, 'package.json');
package/esm/utils.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import chalk from 'chalk';
2
- import { readAndParsePackageJson } from "./package";
2
+ import { readAndParsePackageJson } from './package';
3
3
  // Function to display the version information
4
4
  export function displayVersion() {
5
5
  const pkg = readAndParsePackageJson();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chain-registry/cli",
3
- "version": "1.47.2",
3
+ "version": "1.47.4",
4
4
  "description": "Chain Registry CLI",
5
5
  "author": "Dan Lynch <pyramation@gmail.com>",
6
6
  "homepage": "https://github.com/cosmology-tech/chain-registry",
@@ -25,16 +25,17 @@
25
25
  },
26
26
  "scripts": {
27
27
  "copy": "copyfiles -f LICENSE README.md package.json dist",
28
- "clean": "del dist/**",
28
+ "clean": "rimraf dist/**",
29
29
  "prepare": "npm run build",
30
30
  "build": "npm run clean; tsc; tsc -p tsconfig.esm.json; npm run copy",
31
+ "lint": "eslint . --fix",
31
32
  "dev": "ts-node src/cli",
32
33
  "test": "jest",
33
34
  "test:watch": "jest --watch"
34
35
  },
35
36
  "dependencies": {
36
- "@chain-registry/interfaces": "^0.46.2",
37
- "@chain-registry/workflows": "^1.47.2",
37
+ "@chain-registry/interfaces": "^0.46.4",
38
+ "@chain-registry/workflows": "^1.47.4",
38
39
  "chalk": "^4.1.0",
39
40
  "deepmerge": "^4.3.1",
40
41
  "inquirerer": "1.9.0",
@@ -47,5 +48,5 @@
47
48
  "cosmos",
48
49
  "interchain"
49
50
  ],
50
- "gitHead": "9e09944a2a5b14f3fb6e93feb28ba324dd781c83"
51
+ "gitHead": "c619fb64182b1553c6e56e8dfb7a59d5b74e3f0f"
51
52
  }