Skip to content

Commit

Permalink
added explicit publish flags for package-json (#58)
Browse files Browse the repository at this point in the history
  • Loading branch information
fuxingloh authored Mar 15, 2021
1 parent 1bfa5ae commit 89099f0
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 16 deletions.
9 changes: 5 additions & 4 deletions packages/jellyfish-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@
"private": false,
"name": "@defichain/jellyfish-core",
"version": "0.0.0",
"description": "A collection of TypeScript/JavaScript tools and libraries for DeFiChain to build decentralized finance on Bitcoin",
"description": "A collection of TypeScript + JavaScript tools and libraries for DeFiChain developers to build decentralized finance on Bitcoin",
"keywords": [
"DeFiChain",
"JavaScript",
"API"
"API",
"Bitcoin"
],
"repository": "DeFiCh/jellyfish",
"bugs": "https://github.com/DeFiCh/jellyfish/issues",
Expand All @@ -31,8 +32,8 @@
],
"scripts": {
"build": "tsc",
"publish:next": "npm publish --tag next",
"publish:latest": "npm publish --tag latest"
"publish:next": "npm publish --tag next --access public",
"publish:latest": "npm publish --tag latest --access public"
},
"peerDependencies": {
"bignumber.js": "^9.0.1",
Expand Down
9 changes: 5 additions & 4 deletions packages/jellyfish-jsonrpc/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@
"private": false,
"name": "@defichain/jellyfish-jsonrpc",
"version": "0.0.0",
"description": "A collection of TypeScript/JavaScript tools and libraries for DeFiChain to build decentralized finance on Bitcoin",
"description": "A collection of TypeScript + JavaScript tools and libraries for DeFiChain developers to build decentralized finance on Bitcoin",
"keywords": [
"DeFiChain",
"JavaScript",
"API"
"API",
"Bitcoin"
],
"repository": "DeFiCh/jellyfish",
"bugs": "https://github.com/DeFiCh/jellyfish/issues",
Expand All @@ -31,8 +32,8 @@
],
"scripts": {
"build": "tsc",
"publish:next": "npm publish --tag next",
"publish:latest": "npm publish --tag latest"
"publish:next": "npm publish --tag next --access public",
"publish:latest": "npm publish --tag latest --access public"
},
"dependencies": {
"@defichain/jellyfish-core": "0.0.0",
Expand Down
9 changes: 5 additions & 4 deletions packages/jellyfish/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@
"private": false,
"name": "@defichain/jellyfish",
"version": "0.0.0",
"description": "A collection of TypeScript/JavaScript tools and libraries for DeFiChain to build decentralized finance on Bitcoin",
"description": "A collection of TypeScript + JavaScript tools and libraries for DeFiChain developers to build decentralized finance on Bitcoin",
"keywords": [
"DeFiChain",
"JavaScript",
"API"
"API",
"Bitcoin"
],
"repository": "DeFiCh/jellyfish",
"bugs": "https://github.com/DeFiCh/jellyfish/issues",
Expand Down Expand Up @@ -48,8 +49,8 @@
},
"scripts": {
"build": "parcel build src/jellyfish.ts",
"publish:next": "npm publish --tag next",
"publish:latest": "npm publish --tag latest"
"publish:next": "npm publish --tag next --access public",
"publish:latest": "npm publish --tag latest --access public"
},
"dependencies": {
"@defichain/jellyfish-core": "0.0.0",
Expand Down
9 changes: 5 additions & 4 deletions packages/testcontainers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@
"private": false,
"name": "@defichain/testcontainers",
"version": "0.0.0",
"description": "A collection of TypeScript/JavaScript tools and libraries for DeFiChain to build decentralized finance on Bitcoin",
"description": "A collection of TypeScript + JavaScript tools and libraries for DeFiChain developers to build decentralized finance on Bitcoin",
"keywords": [
"DeFiChain",
"JavaScript",
"API"
"API",
"Bitcoin"
],
"repository": "DeFiCh/jellyfish",
"bugs": "https://github.com/DeFiCh/jellyfish/issues",
Expand All @@ -28,8 +29,8 @@
],
"scripts": {
"build": "tsc",
"publish:next": "npm publish --tag next",
"publish:latest": "npm publish --tag latest"
"publish:next": "npm publish --tag next --access public",
"publish:latest": "npm publish --tag latest --access public"
},
"dependencies": {
"dockerode": "^3.2.1",
Expand Down

0 comments on commit 89099f0

Please sign in to comment.