Skip to content

Commit b80f3ba

Browse files
committed
fix package type
1 parent f0f06db commit b80f3ba

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585
${{steps.get-versions.outputs.pkg}} run build
8686
tmp=$(mktemp)
8787
jq --arg version "${{ github.event.release.tag_name }}" '.version = $version' package.json > $tmp
88-
mv $tmp package.json
88+
jq 'del(.type)' $tmp > package.json
8989
echo version=$(jq -r '.version' package.json) >> $GITHUB_OUTPUT
9090
9191
- name: Publish

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"removeComments": true,
1515
"declarationDir": "lib/types",
1616
"strict": true,
17-
"allowSyntheticDefaultImports": true,
17+
"esModuleInterop": true,
1818
"skipLibCheck": true
1919
},
2020
"exclude": ["node_modules", "**/*.spec.ts", "lib"]

0 commit comments

Comments
 (0)