Skip to content

Commit

Permalink
build: set access to public for all packages
Browse files Browse the repository at this point in the history
this is necessary to ensure that the packages aren't published privately, which is the default
behavior for scoped packages. lerna/lerna#914
  • Loading branch information
Paul Marbach committed Jun 21, 2019
1 parent ff3939b commit 0b0b9a8
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 5 deletions.
5 changes: 4 additions & 1 deletion packages/eslint-config-base/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@
"peerDependencies": {
"eslint": "<=5.0.0"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": "<=6.14.0"
"node": "<=8"
}
}
5 changes: 4 additions & 1 deletion packages/eslint-config-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@
"eslint-plugin-jsx-a11y": "<=6.0.0",
"eslint-plugin-react": "<=7.7.0"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": "<=6.14.0"
"node": "<=8"
}
}
5 changes: 4 additions & 1 deletion packages/eslint-config-typescript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@
"@typescript-eslint/parser": "<=1.5.0",
"eslint": "<=5.0.0"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": "<=6.14.0"
"node": "<=8"
}
}
5 changes: 4 additions & 1 deletion packages/prettier-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@
"peerDependencies": {
"prettier": "<=1.0.0"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": "<=6.14.0"
"node": "<=8"
}
}
5 changes: 4 additions & 1 deletion packages/tsconfig/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@
"devDependencies": {
"typescript": "^3.2.2"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": "<=6.14.0"
"node": "<=8"
}
}
6 changes: 6 additions & 0 deletions packages/web-scripts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,5 +63,11 @@
"object.fromentries": "^2.0.0",
"rimraf": "^2.6.3",
"tempy": "^0.2.1"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": "<=8"
}
}

0 comments on commit 0b0b9a8

Please sign in to comment.