Skip to content

Commit

Permalink
add access config to each package package.json file
Browse files Browse the repository at this point in the history
  • Loading branch information
mmv08 committed Jul 22, 2021
1 parent e4d17c9 commit 048e0f0
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"scripts": {
"build:sdk": "lerna run --scope @gnosis.pm/safe-apps-sdk build --stream",
"test:sdk": "lerna run --scope @gnosis.pm/safe-apps-sdk test --stream",
"release": "lerna run build && changeset publish --access=public"
"release": "lerna run build && changeset publish"
},
"workspaces": {
"packages": [
Expand Down
5 changes: 4 additions & 1 deletion packages/cra-template-safe-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,8 @@
"description": "Gnosis Safe App Starter",
"author": "Gnosis (https://gnosis.pm)",
"license": "MIT",
"main": "template.json"
"main": "template.json",
"publishConfig": {
"access": "public"
}
}
3 changes: 3 additions & 0 deletions packages/safe-apps-provider/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,8 @@
"dependencies": {
"@gnosis.pm/safe-apps-sdk": "4.1.0-next.0",
"events": "^3.3.0"
},
"publishConfig": {
"access": "public"
}
}
3 changes: 3 additions & 0 deletions packages/safe-apps-react-sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,8 @@
"last 1 firefox version",
"last 1 safari version"
]
},
"publishConfig": {
"access": "public"
}
}
5 changes: 4 additions & 1 deletion packages/safe-apps-sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,8 @@
"bugs": {
"url": "https://github.com/gnosis/safe-apps-sdk/issues"
},
"homepage": "https://github.com/gnosis/safe-apps-sdk#readme"
"homepage": "https://github.com/gnosis/safe-apps-sdk#readme",
"publishConfig": {
"access": "public"
}
}
5 changes: 4 additions & 1 deletion packages/safe-apps-web3-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,8 @@
"bugs": {
"url": "https://github.com/gnosis/safe-apps-sdk/issues"
},
"homepage": "https://github.com/gnosis/safe-apps-sdk#readme"
"homepage": "https://github.com/gnosis/safe-apps-sdk#readme",
"publishConfig": {
"access": "public"
}
}
3 changes: 3 additions & 0 deletions packages/safe-apps-web3modal/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,8 @@
},
"dependencies": {
"@gnosis.pm/safe-apps-provider": "0.7.0-next.0"
},
"publishConfig": {
"access": "public"
}
}

0 comments on commit 048e0f0

Please sign in to comment.