Skip to content

Commit

Permalink
fix: jsr publish scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
magic-akari committed Mar 12, 2024
1 parent 88b4e93 commit 9835757
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/package.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ const pkg_json = JSON.parse(pkg_text);
const jsr_path = path.resolve(pkg_path, "..", "build", "jsr.jsonc");
pkg_json.name = "@fmt/dart-fmt";
pkg_json.exports = "./dart_fmt.js";
pkg_json.exclude = ["!**", "*.tgz"];
pkg_json.exclude = ["!../build", "*.tgz", ".npmignore"];
fs.writeFileSync(jsr_path, JSON.stringify(pkg_json, null, 4));

0 comments on commit 9835757

Please sign in to comment.