chore: remove npm publish command from package.json files

- Eliminated the `publish` script from multiple package.json files across contracts, sdk/core, sdk/qrcode, and sdk/qrcode-angular.
- This change streamlines the package management process by removing unnecessary publish commands, ensuring a cleaner configuration for future development.
This commit is contained in:
Javier Cortejoso
2026-02-11 18:34:13 +01:00
parent 988c5c2c1a
commit 1f05157cb7
4 changed files with 0 additions and 4 deletions

View File

@@ -38,7 +38,6 @@
"format": "yarn prettier:write",
"prettier:check": "prettier --plugin-search-dir . --list-different '**/*.{json,md,yml,sol,ts}'",
"prettier:write": "prettier --plugin-search-dir . --write '**/*.{json,md,yml,sol,ts}'",
"publish": "npm publish --access public",
"set:hub:v2": "npx dotenv-cli -- bash -c 'NETWORK=${NETWORK} npx tsx scripts/setHubV2.ts'",
"set:registry": "npx dotenv-cli -- bash -c 'NETWORK=${NETWORK} npx tsx scripts/setRegistry.ts'",
"set:registry:hub:v2": "npx dotenv-cli -- bash -c 'yarn hardhat ignition deploy ignition/modules/scripts/updateRegistryHubV2.ts --network ${NETWORK:-localhost} ${VERIFY:+--verify}'",

View File

@@ -41,7 +41,6 @@
"install-sdk": "yarn workspaces focus @selfxyz/core",
"lint": "prettier --check .",
"prepublishOnly": "npm run build",
"publish": "yarn npm publish --access public",
"test": "node --loader ts-node/esm --test tests/*.test.ts",
"types": "yarn build"
},

View File

@@ -32,7 +32,6 @@
"lint:fix": "ng lint --fix",
"nice": "yarn format && yarn lint",
"prepublishOnly": "yarn build",
"publish": "yarn npm publish --access public",
"test": "ng test"
},
"dependencies": {

View File

@@ -62,7 +62,6 @@
"nice": "yarn format && yarn lint:imports",
"nice:check": "yarn lint && yarn lint:imports:check",
"prepublishOnly": "yarn build",
"publish": "yarn npm publish --access public",
"test": "echo 'no tests found'",
"types": "yarn workspace @selfxyz/sdk-common build && tsc -p tsconfig.json --noEmit"
},