Skip to content

Commit 70b3b10

Browse files
committed
Outputs to dist/
Signed-off-by: sirugh <rugh@adobe.com>
1 parent ba8adf8 commit 70b3b10

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
build/
1+
dist/

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
"name": "apollo-link-mutation-queue",
33
"version": "0.0.1",
44
"description": "An apollo link that queues mutations",
5-
"main": "build/dist/index.js",
6-
"module": "build/dist/index.js",
7-
"typings": "build/dist/index.d.ts",
5+
"main": "dist/index.js",
6+
"module": "dist/index.js",
7+
"typings": "dist/index.d.ts",
88
"scripts": {
99
"build": "tsc",
1010
"prepare": "yarn build"

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"lib": ["esnext"],
88
"removeComments": true,
99
"preserveConstEnums": true,
10-
"outDir": "build/dist",
10+
"outDir": "dist",
1111
"sourceMap": true
1212
},
1313
"include": ["src/**/*"],

0 commit comments

Comments
 (0)