@lightdash/cli 0.1447.1 → 0.1448.0

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.
Files changed (3) hide show
  1. package/README.md +1 -1
  2. package/dist/index.js +0 -0
  3. package/package.json +10 -13
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
- pnpm cli-build
30
+ yarn 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.1447.1",
3
+ "version": "0.1448.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": "workspace:*",
15
- "@lightdash/warehouses": "workspace:*",
14
+ "@lightdash/common": "^0.1448.0",
15
+ "@lightdash/warehouses": "^0.1448.0",
16
16
  "@types/columnify": "^1.5.1",
17
17
  "ajv": "^8.11.0",
18
18
  "ajv-formats": "^2.1.1",
@@ -26,32 +26,29 @@
26
26
  "inquirer": "^8.2.4",
27
27
  "js-yaml": "^4.1.0",
28
28
  "lodash": "^4.17.21",
29
- "node-fetch": "^2.7.0",
29
+ "node-fetch": "^2.6.1",
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": "^11.0.3"
34
+ "uuid": "^8.3.2"
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",
40
39
  "@types/lodash": "^4.14.185",
41
- "@types/node-fetch": "2.x",
42
40
  "@types/nunjucks": "^3.2.1",
43
- "@types/parse-node-version": "^1.0.0",
44
- "@types/uuid": "^10.0.0"
41
+ "@types/parse-node-version": "^1.0.0"
45
42
  },
46
43
  "scripts": {
47
44
  "test": "jest",
48
45
  "build": "tsc --build tsconfig.json",
49
46
  "linter": "eslint -c .eslintrc.js --ignore-path ./../../.gitignore",
50
47
  "formatter": "prettier --config .prettierrc.js --ignore-unknown --ignore-path ./../../.gitignore",
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",
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",
55
52
  "preinstall": "bash track.sh started || echo 'skipping preinstall'",
56
53
  "postinstall": "bash track.sh completed || echo 'skipping postinstall'"
57
54
  }