Skip to content

Commit

Permalink
fix: make all packages public on npm registry (VF-000) (#194)
Browse files Browse the repository at this point in the history
**Fixes or implements VF-000**

### Brief description. What is this change?

explicitly define

```json
"publishConfig": {
  "access": "public"
}
```

so that all packages are published as public.
seems to only be an issue for `@voiceflow/voiceflow-types` atm but it's nice to have a consistent config for all the packages.

### Checklist

- [ ] this is a breaking change and should publish a new major version
- [ ] appropriate tests have been written
  • Loading branch information
jonahsnider committed Feb 11, 2022
1 parent 95af687 commit 1b7c1d0
Show file tree
Hide file tree
Showing 9 changed files with 27 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/alexa-types/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@
"license": "ISC",
"main": "build/common/index.js",
"module": "build/esm/index.js",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/voiceflow/libs.git"
Expand Down
3 changes: 3 additions & 0 deletions packages/api-sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@
"license": "ISC",
"main": "build/common/index.js",
"module": "build/esm/index.js",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/voiceflow/libs.git"
Expand Down
3 changes: 3 additions & 0 deletions packages/base-types/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@
"license": "ISC",
"main": "build/common/index.js",
"module": "build/esm/index.js",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/voiceflow/libs.git"
Expand Down
3 changes: 3 additions & 0 deletions packages/chat-types/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@
"license": "ISC",
"main": "build/common/index.js",
"module": "build/esm/index.js",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/voiceflow/libs.git"
Expand Down
3 changes: 3 additions & 0 deletions packages/common/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,9 @@
"license": "ISC",
"main": "build/common/index.js",
"module": "build/esm/index.js",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/voiceflow/libs.git"
Expand Down
3 changes: 3 additions & 0 deletions packages/google-dfes-types/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@
"license": "ISC",
"main": "build/common/index.js",
"module": "build/esm/index.js",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/voiceflow/libs.git"
Expand Down
3 changes: 3 additions & 0 deletions packages/google-types/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@
"license": "ISC",
"main": "build/common/index.js",
"module": "build/esm/index.js",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/voiceflow/libs.git"
Expand Down
3 changes: 3 additions & 0 deletions packages/voice-types/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@
"license": "ISC",
"main": "build/common/index.js",
"module": "build/esm/index.js",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/voiceflow/libs.git"
Expand Down
3 changes: 3 additions & 0 deletions packages/voiceflow-types/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@
"license": "ISC",
"main": "build/common/index.js",
"module": "build/esm/index.js",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/voiceflow/libs.git"
Expand Down

0 comments on commit 1b7c1d0

Please sign in to comment.