From a5b9aec471a25a0878b6f0d9050f51e35356d92e Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 16 Jun 2026 22:59:58 +0000 Subject: [PATCH 1/2] Initial plan From fb5ce3471087fe68898f571a746f3e1a35b9b853 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 16 Jun 2026 23:12:29 +0000 Subject: [PATCH 2/2] Fix publish-npm: add scope to setup-node, add publishConfig to package.json --- .github/workflows/npm-publish.yml | 1 + package.json | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index 3888630..0adcea9 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -35,6 +35,7 @@ jobs: with: node-version: 22 registry-url: https://registry.npmjs.org/ + scope: '@dynamods' - name: Install dependencies run: npm ci --force - name: Build for production diff --git a/package.json b/package.json index 1c15366..28a9227 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,10 @@ "version": "1.0.31", "description": "Dynamo Home", "author": "Autodesk Inc.", - "main": "index.tsx", + "main": "build/index.bundle.js", + "publishConfig": { + "access": "public" + }, "scripts": { "lint:check": "eslint \"src/**/*.{js,jsx,ts,tsx}\" \"tests/**/*.{js,jsx,ts,tsx}\"", "lint:fix": "eslint \"src/**/*.{js,jsx,ts,tsx}\" \"tests/**/*.{js,jsx,ts,tsx}\" --fix",