Skip to content

Commit 492ad8d

Browse files
committed
Fix build package
1 parent 0ceb311 commit 492ad8d

File tree

4 files changed

+4
-8
lines changed

4 files changed

+4
-8
lines changed

.npmignore

-3
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,3 @@ I18n.d.ts
1515
jest.config.js
1616
tsconfig.json
1717
tsconfig.release.json
18-
19-
# Include the dist folder
20-
!dist

bin/i18n-typedef

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/usr/bin/env node
22

3-
require('../dist/src/i18n-typedef.js');
3+
require('../dist/i18n-typedef.js');

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "i18n-typedef",
3-
"version": "1.2.2",
3+
"version": "1.2.3",
44
"description": "Convert I18n translation files to TypeScript definitions",
55
"author": "Agendrix",
66
"repository": {

tsconfig.release.json

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
{
22
"extends": "./tsconfig.json",
33
"compilerOptions": {
4-
"rootDir": ".",
4+
"rootDir": "src",
55
"outDir": "dist",
66
"removeComments": true
7-
},
8-
"include": ["src/**/*"]
7+
}
98
}

0 commit comments

Comments
 (0)