From b3f11366b02e1515e760256cba3cda770bcd7bb3 Mon Sep 17 00:00:00 2001 From: "christian.klinton" Date: Thu, 28 Dec 2023 21:56:28 +0100 Subject: [PATCH 1/3] terser broken. update styled components --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 265a59f..40a23ed 100644 --- a/package.json +++ b/package.json @@ -54,7 +54,7 @@ }, "dependencies": { "@types/react": "^18.2.46", - "styled-components": "^5.3.5", + "styled-components": "^6.1.6", "typescript": "^5.3.3" }, "eslintConfig": { From 4933a603afdf4daa1fab5887da6711946ad30809 Mon Sep 17 00:00:00 2001 From: "christian.klinton" Date: Thu, 28 Dec 2023 21:56:35 +0100 Subject: [PATCH 2/3] terser broken. update styled components --- rollup.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rollup.config.js b/rollup.config.js index 233e140..affc46f 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -3,7 +3,7 @@ import resolve from "@rollup/plugin-node-resolve"; import commonjs from "@rollup/plugin-commonjs"; import postcss from "rollup-plugin-postcss"; import ts from "rollup-plugin-ts"; -import { terser } from "rollup-plugin-terser"; +import terser from '@rollup/plugin-terser'; const packageJson = require("./package.json"); From 8cb4d03aa3121b545dca526f027857606c706148 Mon Sep 17 00:00:00 2001 From: "christian.klinton" Date: Thu, 28 Dec 2023 21:57:00 +0100 Subject: [PATCH 3/3] Revert "Update storybookdeployergithubpages.yml" This reverts commit 785ab09a5a07a6b7245e28d999d867f893a9c4d2. --- .github/workflows/storybookdeployergithubpages.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/storybookdeployergithubpages.yml b/.github/workflows/storybookdeployergithubpages.yml index 509cc8b..0576678 100644 --- a/.github/workflows/storybookdeployergithubpages.yml +++ b/.github/workflows/storybookdeployergithubpages.yml @@ -7,10 +7,11 @@ jobs: build-and-deploy: runs-on: ubuntu-latest steps: + - uses: actions/checkout@v2 - name: Install and Build 🔧 - uses: actions/checkout@v4 - with: - token: ${{ secrets.GH_TOKEN }} - - run: | + # This needs an Acces Token stored as "GH_TOKEN" 👇 + run: | npm install --legacy-peer-deps npm run deploy-storybook -- --ci + env: + GH_TOKEN: ${{ secrets.GH_TOKEN }}