@lightdash/cli 0.1456.0 → 0.1456.1
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +1 -1
- package/dist/index.js +0 -0
- package/package.json +13 -10
package/README.md
CHANGED
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.1456.
|
3
|
+
"version": "0.1456.1",
|
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": "
|
15
|
-
"@lightdash/warehouses": "
|
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.
|
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": "^
|
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": "
|
49
|
-
"fix-lint": "
|
50
|
-
"format": "
|
51
|
-
"fix-format": "
|
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
|
}
|