Skip to content

Commit

Permalink
Merge pull request #26 from BorneRecharge/dev
Browse files Browse the repository at this point in the history
Update dep and fix export configuration
  • Loading branch information
juherr authored Feb 28, 2024
2 parents 166a54f + ba57c12 commit 8021247
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ jobs:
- run: npm run build --if-present
- run: npm test
- name: Upload Code Coverage
uses: codecov/codecov-action@v4.0.2
uses: codecov/codecov-action@v4.1.0
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,16 @@
},
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"default": "./dist/src/index.js"
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./types": {
"types": "./dist/src/lib/types.d.ts",
"default": "./dist/src/lib/types.js"
"types": "./dist/types.d.ts",
"default": "./dist/types.js"
}
},
"files": [
"dist/src"
"dist"
],
"scripts": {
"build": "tsc --project tsconfig.build.json",
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.build.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"extends": "./tsconfig.json",
"exclude": ["test/**/*.spec.ts"]
"exclude": ["test/**/*.ts"]
}
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,5 +68,5 @@
"skipLibCheck": true /* Skip type checking of declaration files. */,
"forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */
},
"include": ["src/**/*.ts", "test/**/*.ts"]
"include": ["src", "test"]
}

0 comments on commit 8021247

Please sign in to comment.