Skip to content

Commit 09b0088

Browse files
fix(npm): output to dist instead of .dist (#2)
1 parent a8e9d5e commit 09b0088

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ npm-debug.log*
55
yarn-debug.log*
66
yarn-error.log*
77
.DS_Store
8-
.dist
8+
dist
99
.env
1010
.idea
1111
documentation

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
"name": "typescript-monads",
33
"version": "0.0.0-development",
44
"description": "Write better TypeScript code",
5-
"main": ".dist/index.js",
5+
"main": "dist/index.js",
66
"author": "Patrick Michalina <patrickmichalina@mac.com> (https://patrickmichalina.com)",
77
"license": "MIT",
88
"repository": {
99
"type": "git",
1010
"url": "https://github.com/patrickmichalina/typescript-monads"
1111
},
1212
"files": [
13-
".dist"
13+
"dist/"
1414
],
1515
"scripts": {
1616
"test": "jest",

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"module": "commonjs",
55
"moduleResolution": "node",
66
"lib": ["es2015", "dom"],
7-
"outDir": ".dist",
7+
"outDir": "dist",
88
"isolatedModules": false,
99
"experimentalDecorators": true,
1010
"emitDecoratorMetadata": true,

0 commit comments

Comments
 (0)