0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-02-24 22:05:56 -05:00

Merge pull request #2200 from logto-io/gao-make-public

fix: make packages public
This commit is contained in:
Gao Sun 2022-10-19 15:27:30 +08:00 committed by GitHub
commit c454d8e253
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 16 additions and 7 deletions

View file

@ -1,12 +1,14 @@
{
"name": "@logto/phrases-ui",
"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>",
"homepage": "https://github.com/logto-io/logto#readme",
"license": "MPL-2.0",
"main": "lib/index.js",
"private": true,
"publishConfig": {
"access": "public"
},
"directories": {
"lib": "lib"
},

View file

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

View file

@ -6,9 +6,12 @@
"license": "MPL-2.0",
"files": [
"lib",
"alterations"
"alterations",
"tables"
],
"private": true,
"publishConfig": {
"access": "public"
},
"scripts": {
"precommit": "lint-staged",
"version": "./update-next.sh && git add alterations/",

View file

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