Skip to content

Commit ebfdbc5

Browse files
committed
publish
1 parent fa511aa commit ebfdbc5

File tree

4 files changed

+19
-9
lines changed

4 files changed

+19
-9
lines changed

.npmignore

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,10 @@ docker-compose.yml
1414
jest.config.js
1515
jest-e2e.config.js
1616
renovate.json
17-
sample.tsconfig.json
18-
cc-test-reporter
1917

2018
# misc
21-
example/
19+
sample/
20+
2221
.circleci/
2322
.github/
2423
FUNDING.yml

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nestjs-graphile-worker",
3-
"version": "0.0.1-alpha",
3+
"version": "0.0.2-alpha",
44
"description": "A Nest.js wrapper for Graphile Worker",
55
"author": "Alexandre Rousseau <[email protected]>",
66
"private": false,
@@ -13,6 +13,8 @@
1313
"type": "git",
1414
"url": "git+https://github.com/madeindjs/nestjs-graphile-worker.git"
1515
},
16+
"main": "dist/index.js",
17+
"types": "dist/index.d.ts",
1618
"scripts": {
1719
"prebuild": "rimraf dist",
1820
"build": "nest build",

tsconfig.build.json

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
{
22
"extends": "./tsconfig.json",
3-
"exclude": ["node_modules", "test", "dist", "**/*spec.ts"]
4-
}
3+
"exclude": [
4+
"node_modules",
5+
"test",
6+
"dist",
7+
"**/*spec.ts",
8+
"sample"
9+
]
10+
}

tsconfig.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"compilerOptions": {
33
"module": "commonjs",
44
"declaration": true,
5-
"removeComments": true,
5+
"removeComments": false,
66
"emitDecoratorMetadata": true,
77
"experimentalDecorators": true,
88
"allowSyntheticDefaultImports": true,
@@ -11,6 +11,9 @@
1111
"outDir": "./dist",
1212
"baseUrl": "./",
1313
"incremental": true,
14-
"skipLibCheck": true
15-
}
14+
"skipLibCheck": true,
15+
},
16+
"exclude": [
17+
"sample"
18+
]
1619
}

0 commit comments

Comments
 (0)