From 7d4fbe20807f98350cbaf6d42aa5a0b368ed9cdc Mon Sep 17 00:00:00 2001 From: David Thorpe Date: Mon, 6 May 2024 14:01:35 +0200 Subject: [PATCH] Updated --- .github/workflows/publish.yaml | 2 +- chat/.npmrc | 1 + chat/package.json | 11 +++++++++++ 3 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 chat/.npmrc create mode 100644 chat/package.json diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 9d06872..02ee93d 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -32,6 +32,6 @@ jobs: npm ci npm version ${{ needs.var.outputs.tag }} --no-git-tag-version --allow-same-version npm run build - npm publish + npm publish --access public env: NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/chat/.npmrc b/chat/.npmrc new file mode 100644 index 0000000..4462dca --- /dev/null +++ b/chat/.npmrc @@ -0,0 +1 @@ +@mutablelogic:registry=https://npm.pkg.github.com/:_authToken=${GITHUB_TOKEN} diff --git a/chat/package.json b/chat/package.json new file mode 100644 index 0000000..e6f2491 --- /dev/null +++ b/chat/package.json @@ -0,0 +1,11 @@ +{ + "name": "@mutablelogic/chat", + "version": "1.0.0", + "main": "index.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "author": "", + "license": "ISC", + "description": "" +}