Skip to content

Commit

Permalink
fix(build): add script to fix package.json before publishing (#127)
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfy1339 committed May 16, 2023
1 parent 636cddf commit f961a6d
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/release.yml
Expand Up @@ -18,6 +18,9 @@ jobs:
cache: npm
- run: npm ci
- run: npm run build
# https://github.com/gr2m/octokit-plugin-create-pull-request/pull/127/
- name: "Fix pkg.files file pattern"
run: node scripts/fix-package-json.js
- run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
15 changes: 15 additions & 0 deletions scripts/fix-package-json.js
@@ -0,0 +1,15 @@
const fs = require("fs");
const path = require("path");
const { EOL } = require("os");

const pkgPath = path.join(__dirname, "../pkg/package.json");
const pkg = JSON.parse(fs.readFileSync(pkgPath, "utf8"));

pkg.files = pkg.files.map((file) => {
if (file.endsWith("/")) {
return file + "**";
}
return file;
});

fs.writeFileSync(pkgPath, JSON.stringify(pkg, null, 2) + EOL, "utf8");

0 comments on commit f961a6d

Please sign in to comment.