From 24019e5756ccf248670a94811aae2f4b5648df89 Mon Sep 17 00:00:00 2001 From: Charles Schleich Date: Tue, 26 Nov 2024 17:30:28 +0100 Subject: [PATCH] Ci/npm release admin (#50) * release admin * Add Description (Fixes npmjs search summary) * remove hard requirement of NPM_TOKEN Env Var --- zenoh-ts/.npmrc | 2 +- zenoh-ts/examples/package.json | 4 ++-- zenoh-ts/package.json | 22 +++++++++++++++++----- 3 files changed, 20 insertions(+), 8 deletions(-) diff --git a/zenoh-ts/.npmrc b/zenoh-ts/.npmrc index 04f57a5..a43f271 100644 --- a/zenoh-ts/.npmrc +++ b/zenoh-ts/.npmrc @@ -1 +1 @@ -@eclipse-zenoh:registry=https://npm.pkg.github.com +@eclipse-zenoh:registry=https://registry.npmjs.com/ \ No newline at end of file diff --git a/zenoh-ts/examples/package.json b/zenoh-ts/examples/package.json index 64d8c61..35b6e81 100644 --- a/zenoh-ts/examples/package.json +++ b/zenoh-ts/examples/package.json @@ -1,6 +1,6 @@ { - "name": "zenoh-ts", - "private": true, + "name": "zenoh-ts-examples", + "private": false, "version": "0.0.0", "type": "module", "scripts": { diff --git a/zenoh-ts/package.json b/zenoh-ts/package.json index cb1952c..5a788b1 100644 --- a/zenoh-ts/package.json +++ b/zenoh-ts/package.json @@ -1,8 +1,9 @@ { "name": "@eclipse-zenoh/zenoh-ts", - "version": "1.0.2-dev", + "version": "1.0.3", "license": "(Apache-2.0 OR EPL-2.0)", "type": "module", + "description": "Zenoh: The Zero Overhead Pub/Sub/Query Protocol", "exports": { "import": "./dist/index.js", "types": "./dist/index.d.ts" @@ -36,7 +37,18 @@ "clean": "rm -rf ./node_modules ./dist ./esm" }, "publishConfig": { - "access": "restricted", - "registry": "https://npm.pkg.github.com" - } -} \ No newline at end of file + "access": "public", + "registry": "https://registry.npmjs.org" + }, + "directories": { + "example": "examples" + }, + "repository": { + "type": "git", + "url": "github.com/eclipse-zenoh/zenoh-ts" + }, + "keywords": [ + "networking" + ], + "author": "Charles Schleich" +}