Skip to content

Commit

Permalink
replace 'lib' with 'dist' as build directory
Browse files Browse the repository at this point in the history
  • Loading branch information
dabrady committed Jul 24, 2022
1 parent 869f824 commit 2d97514
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 203 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
node_modules
coverage
*.pem
.idea
dist/
1 change: 0 additions & 1 deletion lib/index.d.ts

This file was deleted.

197 changes: 0 additions & 197 deletions lib/index.js

This file was deleted.

1 change: 0 additions & 1 deletion lib/index.js.map

This file was deleted.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "nodemon --exec \"npm start\"",
"start": "probot run ./lib/index.js",
"start": "probot run ./dist/index.js",
"lint": "standard **/*.ts --fix",
"test": "jest --coverage && standard **/*.ts",
"test:watch": "jest --watch --notify --notifyMode=change --coverage"
Expand Down Expand Up @@ -53,7 +53,7 @@
"typescript"
],
"ignore": [
"/lib/*"
"/dist/*"
]
},
"heroku-run-build-script": true
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"pretty": true,
"strict": true,
"sourceMap": true,
"outDir": "./lib",
"outDir": "./dist",
"skipLibCheck": true,
"noImplicitAny": true,
"esModuleInterop": true,
Expand Down

0 comments on commit 2d97514

Please sign in to comment.