diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 902b4641d..ffa409e48 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -58,4 +58,4 @@ jobs: env: GITHUB_AUTH: ${{ secrets.GITHUB_TOKEN }} - NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} + NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }} diff --git a/landing/src/pages/demo.astro b/landing/src/pages/demo.astro index f832eb386..8f03d6b01 100644 --- a/landing/src/pages/demo.astro +++ b/landing/src/pages/demo.astro @@ -90,10 +90,10 @@ const shepherdIncludeCode = ` (function () { async function init() { // connect to shepherd pro - await Shepherd.init( - import.meta.env.PUBLIC_SHEPHERD_PUBLIC_KEY, - import.meta.env.PUBLIC_SHEPHERD_FRONTEND_API - ); + // await Shepherd.init( + // import.meta.env.PUBLIC_SHEPHERD_PUBLIC_KEY, + // import.meta.env.PUBLIC_SHEPHERD_FRONTEND_API + // ); // wait for shepherd to be ready setTimeout(function () { const shepherd = setupShepherd(); diff --git a/package.json b/package.json index 887d5d803..ecec5adb4 100644 --- a/package.json +++ b/package.json @@ -13,7 +13,7 @@ "Chuck Carpenter " ], "scripts": { - "build": "pnpm --filter=!landing build", + "build": "pnpm -F shepherd.js build && pnpm -F '!shepherd.js' build", "cypress:install": "pnpm -F 'cypress-tests' cypress:install", "dev": "pnpm watch", "docs": "node_modules/.bin/jsdoc -c .jsdoc.js --verbose",