@lightdash/cli 0.1447.1 → 0.1448.0
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 +10 -13
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.
|
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": "
|
15
|
-
"@lightdash/warehouses": "
|
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.
|
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": "^
|
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": "
|
52
|
-
"fix-lint": "
|
53
|
-
"format": "
|
54
|
-
"fix-format": "
|
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
|
}
|