Skip to content

Commit b10d8dc

Browse files
committed
chore: add publishConfig to all packages
In case that someone copy-pasted the package.json as a template to add a new package, only encounter the npm error when publishing the new package.
1 parent c80e7d5 commit b10d8dc

File tree

9 files changed

+27
-0
lines changed

9 files changed

+27
-0
lines changed

packages/babel-helper-vue-jsx-merge-props/package.json

+3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
"author": "Evan You",
88
"license": "MIT",
99
"private": false,
10+
"publishConfig": {
11+
"access": "public"
12+
},
1013
"files": [],
1114
"scripts": {
1215
"build:testing": "rollup -c rollup.config.testing.js",

packages/babel-plugin-transform-vue-jsx/package.json

+3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
"author": "Evan You",
88
"license": "MIT",
99
"private": false,
10+
"publishConfig": {
11+
"access": "public"
12+
},
1013
"files": [],
1114
"scripts": {
1215
"pretest:snapshot": "yarn build:test",

packages/babel-preset-jsx/package.json

+3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
"author": "Nick Messing <[email protected]>",
88
"license": "MIT",
99
"private": false,
10+
"publishConfig": {
11+
"access": "public"
12+
},
1013
"files": [],
1114
"scripts": {
1215
"build": "rollup -c",

packages/babel-sugar-composition-api-inject-h/package.json

+3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
"author": "luwanquan <[email protected]>",
88
"license": "MIT",
99
"private": false,
10+
"publishConfig": {
11+
"access": "public"
12+
},
1013
"files": [],
1114
"scripts": {
1215
"prepublish": "yarn build",

packages/babel-sugar-composition-api-render-instance/package.json

+3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
"author": "luwanquan <[email protected]>",
88
"license": "MIT",
99
"private": false,
10+
"publishConfig": {
11+
"access": "public"
12+
},
1013
"files": [],
1114
"scripts": {
1215
"prepublish": "yarn build",

packages/babel-sugar-functional-vue/package.json

+3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
"author": "Nick Messing <[email protected]>",
88
"license": "MIT",
99
"private": false,
10+
"publishConfig": {
11+
"access": "public"
12+
},
1013
"files": [],
1114
"scripts": {
1215
"prepublish": "yarn build",

packages/babel-sugar-inject-h/package.json

+3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
"author": "Nick Messing <[email protected]>",
88
"license": "MIT",
99
"private": false,
10+
"publishConfig": {
11+
"access": "public"
12+
},
1013
"files": [],
1114
"scripts": {
1215
"prepublish": "yarn build",

packages/babel-sugar-v-model/package.json

+3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
"author": "Nick Messing <[email protected]>",
88
"license": "MIT",
99
"private": false,
10+
"publishConfig": {
11+
"access": "public"
12+
},
1013
"files": [],
1114
"scripts": {
1215
"pretest:snapshot": "yarn build:test",

packages/babel-sugar-v-on/package.json

+3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
"author": "Nick Messing <[email protected]>",
88
"license": "MIT",
99
"private": false,
10+
"publishConfig": {
11+
"access": "public"
12+
},
1013
"files": [],
1114
"scripts": {
1215
"pretest:snapshot": "yarn build:test",

0 commit comments

Comments
 (0)