Skip to content

Commit

Permalink
changed compile root dir (#4)
Browse files Browse the repository at this point in the history
* changed compile root dir

* remove debug message
  • Loading branch information
hoonsubin authored Oct 30, 2020
1 parent 46e74d8 commit c42ff9f
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "glitch-deploy-tool",
"version": "0.0.2-alpha",
"version": "0.1.0-alpha",
"description": "CLI tool for deploying files to Glitch.com",
"keywords": [
"glitch.com",
Expand Down
1 change: 0 additions & 1 deletion src/cli/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,6 @@ const checkToolMode = () => {
const mode = checkToolMode();
const parser = dashdash.createParser({ options: mode.options });
const opts = parser.parse(process.argv);
console.log(opts._order);
// print the help message if the user passes the help flag or nothing
if (opts.help || opts._order.length === 0) {
const help = parser.help({ includeEnv: true }).trimRight();
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"sourceMap": true,
"outDir": "lib",
"strict": true,
"rootDir": ".",
"rootDir": "src",
"resolveJsonModule": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
Expand Down

0 comments on commit c42ff9f

Please sign in to comment.