chore: create src, dist, .github directories (#36)
This commit is contained in:
0
screenshot.png → .github/screenshot.png
vendored
0
screenshot.png → .github/screenshot.png
vendored
|
Before Width: | Height: | Size: 606 KiB After Width: | Height: | Size: 606 KiB |
2
.gitignore
vendored
2
.gitignore
vendored
@@ -23,7 +23,7 @@ lerna-debug.log*
|
|||||||
.vscode
|
.vscode
|
||||||
|
|
||||||
# Distribution
|
# Distribution
|
||||||
bin
|
dist
|
||||||
|
|
||||||
# Eslint cache
|
# Eslint cache
|
||||||
.eslintcache
|
.eslintcache
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<div align="center">
|
<div align="center">
|
||||||
<div>
|
<div>
|
||||||
<img src="https://raw.githubusercontent.com/Nutlope/aicommits/main/screenshot.png" alt="AI Commits"/>
|
<img src=".github/screenshot.png" alt="AI Commits"/>
|
||||||
<h1 align="center">AI Commits</h1>
|
<h1 align="center">AI Commits</h1>
|
||||||
</div>
|
</div>
|
||||||
<p>A CLI that writes your git commit messages for you with AI. Never write a commit message again.</p>
|
<p>A CLI that writes your git commit messages for you with AI. Never write a commit message again.</p>
|
||||||
|
|||||||
@@ -3,9 +3,9 @@
|
|||||||
"version": "1.0.5",
|
"version": "1.0.5",
|
||||||
"description": "Writes your git commit messages for you with AI",
|
"description": "Writes your git commit messages for you with AI",
|
||||||
"files": [
|
"files": [
|
||||||
"bin"
|
"dist"
|
||||||
],
|
],
|
||||||
"bin": "bin/index.js",
|
"bin": "dist/index.js",
|
||||||
"repository": "https://github.com/Nutlope/aicommits",
|
"repository": "https://github.com/Nutlope/aicommits",
|
||||||
"author": "Hassan El Mghari (@nutlope)",
|
"author": "Hassan El Mghari (@nutlope)",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
|||||||
@@ -2,9 +2,10 @@
|
|||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"target": "es2016",
|
"target": "es2016",
|
||||||
"module": "commonjs",
|
"module": "commonjs",
|
||||||
"outDir": "./bin",
|
"outDir": "./dist",
|
||||||
"esModuleInterop": true,
|
"esModuleInterop": true,
|
||||||
"forceConsistentCasingInFileNames": true,
|
"forceConsistentCasingInFileNames": true,
|
||||||
"skipLibCheck": true /* Skip type checking all .d.ts files. */
|
"skipLibCheck": true /* Skip type checking all .d.ts files. */
|
||||||
},
|
},
|
||||||
|
"include": ["src"]
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user