Skip to content

Commit

Permalink
fix: set public package publishing flag (#49)
Browse files Browse the repository at this point in the history
  • Loading branch information
diegobrsign authored Jun 26, 2024
1 parent 735a610 commit b223e09
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion cra-template-brightsign-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@
"format:check": "prettier . --check --config ../.prettierrc.js --cache --cache-location=../prettiercache",
"format": "prettier . --write --config ../.prettierrc.js --cache --cache-location=../prettiercache && yarn lint --fix",
"lint": "eslint --no-error-on-unmatched-pattern --config ../.eslintrc template/src/**/*.{js,jsx}",
"publish-package": "npm publish"
"publish-package": "npm publish --access public"
}
}
2 changes: 1 addition & 1 deletion cra-template-brightsign-dashboard/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@
"format:check": "prettier . --check --config ../.prettierrc.js --cache --cache-location=../prettiercache",
"format": "prettier . --write --config ../.prettierrc.js --cache --cache-location=../prettiercache && yarn lint --fix",
"lint": "eslint --no-error-on-unmatched-pattern --config ../.eslintrc template/src/**/*.{js,jsx}",
"publish-package": "npm publish"
"publish-package": "npm publish --access public"
}
}
2 changes: 1 addition & 1 deletion example-node-simple-server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"format:check": "prettier . --check --config ../.prettierrc.js --cache --cache-location=../prettiercache",
"format": "prettier . --write --config ../.prettierrc.js --cache --cache-location=../prettiercache && yarn lint --fix",
"lint": "eslint --no-error-on-unmatched-pattern --config ../.eslintrc template/src/**/*.{js,jsx}",
"publish-package": "npm publish"
"publish-package": "npm publish --access public"
},
"repository": {
"url": "https://github.com/brightsign/dev-cookbook.git",
Expand Down
2 changes: 1 addition & 1 deletion template-html5-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"format:check": "prettier 'src/**/*.{js,jsx,ts,tsx,css,md,json}' --check --config ../.prettierrc.js --cache --cache-location=../prettiercache",
"format": "prettier --write 'src/**/*.{js,jsx,ts,tsx,css,md,json}' --config ../.prettierrc.js && npm run lint",
"test": "jest --config jest.config.js src/",
"publish": "npm publish"
"publish": "npm publish --access public"
},
"repository": {
"url": "https://github.com/brightsign/dev-cookbook.git",
Expand Down

0 comments on commit b223e09

Please sign in to comment.