Skip to content

Commit 5e80278

Browse files
committed
outdir was in the wrong place
1 parent 5025cc6 commit 5e80278

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@urcomputeringpal/github-script-ts",
3-
"version": "0.0.6",
3+
"version": "0.0.7",
44
"description": "actions/github-script for Typescript",
55
"repository": "https://github.com/urcomputeringpal/github-script-ts",
66
"files": [
@@ -13,7 +13,7 @@
1313
"format": "prettier --write .",
1414
"format:check": "prettier --check .",
1515
"build": "tsc",
16-
"prepare": "npm run build",
16+
"prepare": "npm run format && npm run build",
1717
"integration": "./test.sh"
1818
},
1919
"dependencies": {

tsconfig.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
"module": "commonjs",
44
"declaration": true,
55
"target": "es5",
6-
"strict": true
6+
"strict": true,
7+
"outDir": "dist"
78
},
89
"include": ["src/*.ts"],
9-
"exclude": ["node_modules", "**/*.test.ts"],
10-
"outDir": "dist"
10+
"exclude": ["node_modules", "**/*.test.ts"]
1111
}

0 commit comments

Comments
 (0)