@lightdash/cli 0.1445.1 → 0.1447.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. package/README.md +1 -1
  2. package/dist/index.js +0 -0
  3. package/package.json +13 -10
package/README.md CHANGED
@@ -27,7 +27,7 @@ eg: `ligthdash test` Runs `dbt test`
27
27
  First build the package
28
28
 
29
29
  ```shell
30
- yarn cli-build
30
+ pnpm cli-build
31
31
  ```
32
32
 
33
33
  Then run the cli commands with `node` and pointing to the `dist/index.js` file
package/dist/index.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lightdash/cli",
3
- "version": "0.1445.1",
3
+ "version": "0.1447.0",
4
4
  "license": "MIT",
5
5
  "bin": {
6
6
  "lightdash": "dist/index.js"
@@ -11,8 +11,8 @@
11
11
  ],
12
12
  "dependencies": {
13
13
  "@actions/core": "^1.11.1",
14
- "@lightdash/common": "^0.1445.1",
15
- "@lightdash/warehouses": "^0.1445.1",
14
+ "@lightdash/common": "workspace:*",
15
+ "@lightdash/warehouses": "workspace:*",
16
16
  "@types/columnify": "^1.5.1",
17
17
  "ajv": "^8.11.0",
18
18
  "ajv-formats": "^2.1.1",
@@ -26,29 +26,32 @@
26
26
  "inquirer": "^8.2.4",
27
27
  "js-yaml": "^4.1.0",
28
28
  "lodash": "^4.17.21",
29
- "node-fetch": "^2.6.1",
29
+ "node-fetch": "^2.7.0",
30
30
  "nunjucks": "^3.2.3",
31
31
  "ora": "5.4.1",
32
32
  "parse-node-version": "^2.0.0",
33
33
  "unique-names-generator": "^4.7.1",
34
- "uuid": "^8.3.2"
34
+ "uuid": "^11.0.3"
35
35
  },
36
36
  "description": "Lightdash CLI tool",
37
37
  "devDependencies": {
38
38
  "@types/inquirer": "^8.2.1",
39
+ "@types/js-yaml": "^4.0.9",
39
40
  "@types/lodash": "^4.14.185",
41
+ "@types/node-fetch": "2.x",
40
42
  "@types/nunjucks": "^3.2.1",
41
- "@types/parse-node-version": "^1.0.0"
43
+ "@types/parse-node-version": "^1.0.0",
44
+ "@types/uuid": "^10.0.0"
42
45
  },
43
46
  "scripts": {
44
47
  "test": "jest",
45
48
  "build": "tsc --build tsconfig.json",
46
49
  "linter": "eslint -c .eslintrc.js --ignore-path ./../../.gitignore",
47
50
  "formatter": "prettier --config .prettierrc.js --ignore-unknown --ignore-path ./../../.gitignore",
48
- "lint": "yarn run linter ./src",
49
- "fix-lint": "yarn run linter ./src --fix",
50
- "format": "yarn run formatter ./src --check",
51
- "fix-format": "yarn run formatter ./src --write",
51
+ "lint": "pnpm run linter ./src",
52
+ "fix-lint": "pnpm run linter ./src --fix",
53
+ "format": "pnpm run formatter ./src --check",
54
+ "fix-format": "pnpm run formatter ./src --write",
52
55
  "preinstall": "bash track.sh started || echo 'skipping preinstall'",
53
56
  "postinstall": "bash track.sh completed || echo 'skipping postinstall'"
54
57
  }