Skip to content

Commit

Permalink
Setup config files for configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
suyash-purwar committed Feb 12, 2023
1 parent 6b41327 commit 1a6f10f
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 30 deletions.
3 changes: 3 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
src/
.env
tsconfig.json
28 changes: 5 additions & 23 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
{
"name": "hephaestus-cli",
"version": "1.0.0",
"description": "Communicate with ChatGPT and DALL-E right through your terminal",
"name": "@ashnov/hephaestus-cli",
"version": "0.2.0",
"description": "Your AI powered CLI-based coding assistant. Powered by OpenAI davinci models.",
"main": "./build/app.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
"start:dev": "tsc -w",
"start:prod": "tsc"
},
"repository": {
"type": "git",
Expand Down Expand Up @@ -34,8 +35,7 @@
"inquirer": "^9.1.4",
"node-emoji": "^1.11.0",
"openai": "^3.1.0",
"ora": "^6.1.2",
"typescript": "^4.9.4"
"ora": "^6.1.2"
},
"devDependencies": {
"@types/gradient-string": "^1.1.2",
Expand Down
2 changes: 1 addition & 1 deletion src/ResponseHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ export class ResponseHandler {
}

private static execVersionCommand(): void {
console.log(Stylize.flatInfo('Version: 0.1.0'));
console.log(Stylize.flatInfo('Version: 0.2.0'));
}

private static async execAnswerCommand(
Expand Down

0 comments on commit 1a6f10f

Please sign in to comment.