Skip to content

Commit 36944eb

Browse files
committedOct 2, 2024·
chore: ensure public access is configured for published packages
1 parent 3a00773 commit 36944eb

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed
 

‎esbuild.config.js

+1
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@ module.exports = {
108108
directory: project.data.root,
109109
};
110110
packageJson.contributors = rootPackageJson.contributors;
111+
packageJson.publishConfig = { access: 'public' };
111112
packageJson.type = 'module';
112113
packageJson.main = './index.js';
113114
packageJson.types = './src/index.d.ts';

‎packages/nx-plugin/package.json

+3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
"version": "0.51.0",
44
"license": "MIT",
55
"description": "Nx plugin to integrate the Code PushUp CLI into your workspace 🛠️",
6+
"publishConfig": {
7+
"access": "public"
8+
},
69
"homepage": "code-pushup.dev",
710
"bugs": {
811
"url": "https://github.com/code-pushup/cli/issues"

0 commit comments

Comments
 (0)
Please sign in to comment.