Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: created custom help message #126

Merged
merged 55 commits into from
Dec 7, 2021
Merged
Show file tree
Hide file tree
Changes from 51 commits
Commits
Show all changes
55 commits
Select commit Hold shift + click to select a range
e25ff75
feat: adding context commands in help message
Souvikns Jun 18, 2021
32d7947
feat: initial approach
Souvikns Jun 20, 2021
b08d595
feat: context service created
Souvikns Jun 21, 2021
294be41
feat: connected list and current
Souvikns Jun 22, 2021
1a78f61
feat: update the context commands
Souvikns Jun 23, 2021
e0e1d7e
fix: issue with the file imports
Souvikns Jun 24, 2021
677136d
refactor: contextPath
Souvikns Jun 24, 2021
38775cd
chore: changed the old format
Souvikns Jun 25, 2021
bf1d1d7
feat: added required functions in useContextFile
Souvikns Jun 28, 2021
203264b
feat: command and subcommand router
Souvikns Jun 28, 2021
f061205
feat: auto detect specific spec file in the working directory
Souvikns Jun 28, 2021
4695943
feat: created all the component for context.
Souvikns Jun 30, 2021
959b6dd
feat: moved logic to service class and connected the commands to the …
Souvikns Jul 2, 2021
925b3d8
feat: added custom error message for keynotfound error
Souvikns Jul 2, 2021
0554dc5
feat: created context removing logic
Souvikns Jul 2, 2021
19f624a
feat: auto setting current when adding context for the first tme.
Souvikns Jul 5, 2021
b4e632c
feat: updated router logic
Souvikns Jul 5, 2021
d44ab80
chore: renamed filename from context to Context
Souvikns Jul 5, 2021
7835775
chore: cleaned all duplicate code
Souvikns Jul 5, 2021
e74850d
feat: updated command specification
Souvikns Jul 6, 2021
959ba71
feat: removed dummy spec paths
Souvikns Jul 6, 2021
5f4ee97
feat: added logic to fetch context from flag
Souvikns Jul 7, 2021
b954773
feat: updated validate component to work with saved context
Souvikns Jul 7, 2021
f429cd4
feat: updated the test cases for validate component
Souvikns Jul 7, 2021
1cfb902
fix: fixed the bug with deleting context that was set as current cont…
Souvikns Jul 7, 2021
66e82a9
fix: fixed the e.location bug
Souvikns Jul 9, 2021
33c5fab
fix: parser error logs.
Souvikns Jul 9, 2021
7dde0c7
fix: update help command text
Souvikns Jul 9, 2021
1214e6c
feat: updated documentation and CLI help message
Souvikns Jul 9, 2021
98b5c7b
feat: fixing the doc
Souvikns Jul 9, 2021
a244692
feat: add context now checks if the path exists.
Souvikns Jul 9, 2021
18d7076
feat: updated the suggested changes
Souvikns Jul 9, 2021
348c6bc
docs: added info about required --context flag for validation
Souvikns Jul 9, 2021
ec079c6
feat: created return type for useContextFile hook
Souvikns Jul 9, 2021
da0e606
fix: fixing issue with overwriting global asyncapi file
Souvikns Jul 13, 2021
19bcba4
Merge remote-tracking branch 'upstream/master'
Souvikns Jul 13, 2021
562a82f
feat: created custom help message
Souvikns Nov 3, 2021
c0cf61c
fix: lint fixes
Souvikns Nov 3, 2021
41fe590
Merge remote-tracking branch 'upstream/master'
Souvikns Nov 9, 2021
4a30a2d
fix: fixed imports
Souvikns Nov 9, 2021
49900fb
chore: updating the helpClass config in package.json
Souvikns Nov 9, 2021
41a8cfd
Merge remote-tracking branch 'upstream/master'
Souvikns Nov 24, 2021
f8e9846
Merge branch 'master' into custom-help-message
Souvikns Nov 24, 2021
0c2ab29
fix: start command was not showing in the root help
Souvikns Nov 24, 2021
3abccdd
chore: cleaning up the imports
Souvikns Nov 24, 2021
f6cf896
fix: lint fixes
Souvikns Nov 24, 2021
7fd9b41
test: trying to fix issue with pr checks
Souvikns Nov 26, 2021
1452665
chore: removing sonar exclusions to see all the sonar warnings
Souvikns Dec 1, 2021
a6cf4dc
fix: changing filename as suggested by sonarcloud
Souvikns Dec 1, 2021
8dd1d54
chore: ignoring certain function from sonar cloud scan
Souvikns Dec 1, 2021
8cca5d8
Merge remote-tracking branch 'upstream/master' into custom-help-message
Souvikns Dec 1, 2021
4594911
chore: fixing lint errors
Souvikns Dec 2, 2021
07ae6cf
Merge remote-tracking branch 'upstream/master' into custom-help-message
Souvikns Dec 2, 2021
46c3003
chore: ignoring sonarjs warning about large functions
Souvikns Dec 2, 2021
5658fe1
Merge branch 'master' into custom-help-message
Souvikns Dec 6, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@
},
"overrides": [
{
"files": ["*.spec.ts", "*.spec.tsx"],
"files": ["*.spec.ts", "*.spec.tsx", "src/help/command.ts"],
"rules": {
"no-undef": "off",
"security/detect-non-literal-fs-filename": "off",
Expand All @@ -194,7 +194,8 @@
"sonarjs/no-identical-functions": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/no-unused-vars": "off",
"no-use-before-define": "off"
"no-use-before-define": "off",
"sonarjs/cognitive-complexity": "off"
}
}
]
Expand Down
1 change: 0 additions & 1 deletion .sonarcloud.properties

This file was deleted.

Loading