Skip to content

Commit

Permalink
chore: ensure public access is configured for published packages
Browse files Browse the repository at this point in the history
  • Loading branch information
matejchalk committed Oct 2, 2024
1 parent 3a00773 commit 36944eb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions esbuild.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ module.exports = {
directory: project.data.root,
};
packageJson.contributors = rootPackageJson.contributors;
packageJson.publishConfig = { access: 'public' };
packageJson.type = 'module';
packageJson.main = './index.js';
packageJson.types = './src/index.d.ts';
Expand Down
3 changes: 3 additions & 0 deletions packages/nx-plugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
"version": "0.51.0",
"license": "MIT",
"description": "Nx plugin to integrate the Code PushUp CLI into your workspace 🛠️",
"publishConfig": {
"access": "public"
},
"homepage": "code-pushup.dev",
"bugs": {
"url": "https://github.com/code-pushup/cli/issues"
Expand Down

0 comments on commit 36944eb

Please sign in to comment.