Skip to content

Commit

Permalink
feat: remove build folder
Browse files Browse the repository at this point in the history
  • Loading branch information
QEDK committed Nov 12, 2023
1 parent b4f41ba commit d38aafd
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const NETWORK_RPC_URLS: { kate: string, goldberg: string, local: string } = {
}

program
.name('avail-cli')
.name('avail')
.description('A simple CLI for Avail network utilities')
.version(version)

Expand Down
1 change: 1 addition & 0 deletions package-lock.json

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

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@availproject/cli",
"version": "0.1.7",
"description": "A simple CLI for Avail utilities",
"main": "build/index.js",
"main": "index.js",
"bugs": "https://github.com/availproject/cli/issues",
"homepage": "https://github.com/availproject/cli#readme",
"repository": {
Expand Down Expand Up @@ -33,10 +33,11 @@
"commander": "^11.1.0"
},
"devDependencies": {
"@types/node": "^20.9.0",
"ts-standard": "^12.0.2",
"typescript": "^5.2.2"
},
"bin": {
"avail": "build/index.js"
"avail": "index.js"
}
}
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
// "sourceMap": true, /* Create source map files for emitted JavaScript files. */
// "inlineSourceMap": true, /* Include sourcemap files inside the emitted JavaScript. */
// "outFile": "./", /* Specify a file that bundles all outputs into one JavaScript file. If 'declaration' is true, also designates a file that bundles all .d.ts output. */
"outDir": "./build", /* Specify an output folder for all emitted files. */
// "outDir": "./", /* Specify an output folder for all emitted files. */
// "removeComments": true, /* Disable emitting comments. */
// "noEmit": true, /* Disable emitting files from a compilation. */
// "importHelpers": true, /* Allow importing helper functions from tslib once per project, instead of including them per-file. */
Expand Down

0 comments on commit d38aafd

Please sign in to comment.