Skip to content

Commit

Permalink
Fix main and types to point to dist folder
Browse files Browse the repository at this point in the history
This change fixed the folder name set wrongly at #9
  • Loading branch information
Fryuni authored Mar 26, 2020
1 parent 8a6cb18 commit 0e0a89e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-published-releases.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
mv package.json package-full.json
cat package-full.json | \
jq 'del(.dependencies) | del(.devDependencies) | del(.testDependencies) | del(.jest) | del(.scripts)' | \
jq '.main = "dist/index.js" | .types = "dist/index.d.ts"' | \
jq '.main = "build/index.js" | .types = "build/index.d.ts"' | \
jq ".version = \"${GITHUB_REF##*/}\"" > package.json
cat package.json
Expand Down

0 comments on commit 0e0a89e

Please sign in to comment.