0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2024-12-30 20:33:54 -05:00

fix: make packages public

This commit is contained in:
Gao Sun 2022-10-19 15:10:50 +08:00
parent 33c10ce216
commit e24fd0479b
No known key found for this signature in database
GPG key ID: 13EBE123E4773688
4 changed files with 14 additions and 6 deletions

View file

@ -1,12 +1,14 @@
{ {
"name": "@logto/phrases-ui", "name": "@logto/phrases-ui",
"version": "1.0.0-beta.11", "version": "1.0.0-beta.11",
"description": "i18n phrases for main-flow", "description": "Logto shared phrases (i18n) for main flow.",
"author": "Silverhand Inc. <contact@silverhand.io>", "author": "Silverhand Inc. <contact@silverhand.io>",
"homepage": "https://github.com/logto-io/logto#readme", "homepage": "https://github.com/logto-io/logto#readme",
"license": "MPL-2.0", "license": "MPL-2.0",
"main": "lib/index.js", "main": "lib/index.js",
"private": true, "publishConfig": {
"access": "public"
},
"directories": { "directories": {
"lib": "lib" "lib": "lib"
}, },

View file

@ -1,12 +1,14 @@
{ {
"name": "@logto/phrases", "name": "@logto/phrases",
"version": "1.0.0-beta.11", "version": "1.0.0-beta.11",
"description": "Logto shared phrases (l10n).", "description": "Logto shared phrases (i18n).",
"author": "Silverhand Inc. <contact@silverhand.io>", "author": "Silverhand Inc. <contact@silverhand.io>",
"homepage": "https://github.com/logto-io/logto#readme", "homepage": "https://github.com/logto-io/logto#readme",
"license": "MPL-2.0", "license": "MPL-2.0",
"main": "lib/index.js", "main": "lib/index.js",
"private": true, "publishConfig": {
"access": "public"
},
"files": [ "files": [
"lib" "lib"
], ],

View file

@ -8,7 +8,9 @@
"lib", "lib",
"alterations" "alterations"
], ],
"private": true, "publishConfig": {
"access": "public"
},
"scripts": { "scripts": {
"precommit": "lint-staged", "precommit": "lint-staged",
"version": "./update-next.sh && git add alterations/", "version": "./update-next.sh && git add alterations/",

View file

@ -7,7 +7,9 @@
"files": [ "files": [
"lib" "lib"
], ],
"private": true, "publishConfig": {
"access": "public"
},
"scripts": { "scripts": {
"precommit": "lint-staged", "precommit": "lint-staged",
"build": "rm -rf lib/ && tsc -p tsconfig.build.json", "build": "rm -rf lib/ && tsc -p tsconfig.build.json",