Skip to content

Commit 38f5efd

Browse files
committed
Fixed public access for new packages
- you need to explicitly set access to public otherwise it will be private
1 parent 88ad2d3 commit 38f5efd

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

packages/html-to-plaintext/package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@
99
"index.js",
1010
"lib"
1111
],
12+
"publishConfig": {
13+
"access": "public"
14+
},
1215
"scripts": {
1316
"dev": "echo \"Implement me!\"",
1417
"test:unit": "NODE_ENV=testing c8 --all --check-coverage --reporter text --reporter cobertura -- mocha --reporter dot './test/**/*.test.js'",

packages/members-csv/package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
"author": "Ghost Foundation",
66
"license": "MIT",
77
"main": "index.js",
8+
"publishConfig": {
9+
"access": "public"
10+
},
811
"scripts": {
912
"dev": "echo \"Implement me!\"",
1013
"test:unit": "NODE_ENV=testing c8 --all --reporter text --reporter cobertura -- mocha --reporter dot './test/**/*.test.js'",

0 commit comments

Comments
 (0)