forked from lightdash/lightdash
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: lightdash cli tool (lightdash#1970)
* src * version and dbt * version and dbt * update readme * update readme * better version * better version * empty commit * empty commit * comment: remove * add cli to lint-staged * add to lint-staged * update lint * update release.config * cli lint
- Loading branch information
Showing
14 changed files
with
2,096 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"extends": [ | ||
"eslint:recommended", | ||
"airbnb-base", | ||
"airbnb-typescript/base", | ||
"prettier", | ||
"plugin:json/recommended" | ||
], | ||
"plugins": ["@typescript-eslint"], | ||
"parserOptions": { | ||
"project": "./tsconfig.json" | ||
}, | ||
"rules": { | ||
"no-console": "off" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
node_modules | ||
dist | ||
coverage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"singleQuote": true, | ||
"trailingComma": "all", | ||
"tabWidth": 4 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
## Lightdash CLI | ||
|
||
Lightash CLI tool | ||
|
||
## How to install | ||
|
||
`npm i -g @lightdash/cli` | ||
|
||
## Usage | ||
|
||
``` | ||
Usage: lightdash [options] [command] | ||
Options: | ||
-h, --help display help for command | ||
Commands: | ||
version output the version number | ||
[dbt_command] runs dbt | ||
help [command] display help for command | ||
``` | ||
|
||
eg: `ligthdash test` Runs `dbt test` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
module.exports = { | ||
preset: 'ts-jest', | ||
testEnvironment: 'node', | ||
automock: false, | ||
testPathIgnorePatterns: ['/node_modules/', '/dist/'], | ||
}; |
Oops, something went wrong.