From 86cb2edbcdafdb9ce24be5285a7ba943c89f0ebf Mon Sep 17 00:00:00 2001 From: SeiyaKobayashi Date: Mon, 26 Aug 2024 11:42:27 +0900 Subject: [PATCH] Fix yarn configs --- packages/core/.yarnrc.yml | 5 +++++ packages/core/package.json | 1 - packages/core/yarnrc.yml | 3 --- packages/v1/.yarnrc.yml | 5 +++++ packages/v1/package.json | 1 - packages/v1/yarnrc.yml | 3 --- 6 files changed, 10 insertions(+), 8 deletions(-) create mode 100644 packages/core/.yarnrc.yml delete mode 100644 packages/core/yarnrc.yml create mode 100644 packages/v1/.yarnrc.yml delete mode 100644 packages/v1/yarnrc.yml diff --git a/packages/core/.yarnrc.yml b/packages/core/.yarnrc.yml new file mode 100644 index 0000000..38d4769 --- /dev/null +++ b/packages/core/.yarnrc.yml @@ -0,0 +1,5 @@ +npmScopes: + jpyc: + npmAlwaysAuth: true + npmAuthToken: '${NODE_AUTH_TOKEN}' + npmPublishRegistry: 'https://registry.npmjs.org' diff --git a/packages/core/package.json b/packages/core/package.json index f802445..5d81f27 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -11,7 +11,6 @@ "node": "^20.12.0", "yarn": "^1.22.22" }, - "private": true, "scripts": { "docs": "typedoc", "compile": "tsc", diff --git a/packages/core/yarnrc.yml b/packages/core/yarnrc.yml deleted file mode 100644 index 8a2a5eb..0000000 --- a/packages/core/yarnrc.yml +++ /dev/null @@ -1,3 +0,0 @@ -npmAlwaysAuth: true -npmAuthToken: '${NODE_AUTH_TOKEN}' -npmPublishRegistry: 'https://registry.npmjs.org' diff --git a/packages/v1/.yarnrc.yml b/packages/v1/.yarnrc.yml new file mode 100644 index 0000000..38d4769 --- /dev/null +++ b/packages/v1/.yarnrc.yml @@ -0,0 +1,5 @@ +npmScopes: + jpyc: + npmAlwaysAuth: true + npmAuthToken: '${NODE_AUTH_TOKEN}' + npmPublishRegistry: 'https://registry.npmjs.org' diff --git a/packages/v1/package.json b/packages/v1/package.json index 7fc42f5..b62daf3 100644 --- a/packages/v1/package.json +++ b/packages/v1/package.json @@ -11,7 +11,6 @@ "node": "^20.12.0", "yarn": "^1.22.22" }, - "private": true, "scripts": { "docs": "typedoc", "env": "cp .env.example .env", diff --git a/packages/v1/yarnrc.yml b/packages/v1/yarnrc.yml deleted file mode 100644 index 8a2a5eb..0000000 --- a/packages/v1/yarnrc.yml +++ /dev/null @@ -1,3 +0,0 @@ -npmAlwaysAuth: true -npmAuthToken: '${NODE_AUTH_TOKEN}' -npmPublishRegistry: 'https://registry.npmjs.org'