From 2dd7ecd19c149ced2a5c228ea0908de84e5121cd Mon Sep 17 00:00:00 2001 From: Mikael Finstad Date: Mon, 6 May 2024 13:20:39 +0200 Subject: [PATCH] try to fix build --- .github/workflows/e2e.yml | 4 ++-- package.json | 3 +-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 50ee905036..8967ef04a9 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -89,7 +89,7 @@ jobs: env: # https://docs.cypress.io/guides/references/advanced-installation#Skipping-installation CYPRESS_INSTALL_BINARY: 0 - - run: corepack yarn build:js:typeless + - run: corepack yarn build:js - name: Store output file run: tar cf /tmp/previousVersion.tar packages/@uppy/*/lib - name: Fetch source from the PR @@ -124,7 +124,7 @@ jobs: to test') run: | git checkout FETCH_HEAD -- packages - - run: corepack yarn build:js:typeless + - run: corepack yarn build:js - name: Store output file run: tar cf /tmp/newVersion.tar packages/@uppy/*/lib - name: Setup git diff --git a/package.json b/package.json index 51da342377..b5516732bc 100644 --- a/package.json +++ b/package.json @@ -121,8 +121,7 @@ "build:css": "yarn node ./bin/build-css.js", "build:svelte": "yarn workspace @uppy/svelte build", "build:angular": "yarn workspace angular build", - "build:js:typeless": "npm-run-all build:lib build:companion build:svelte", - "build:js": "npm-run-all build:js:typeless build:locale-pack build:angular build:bundle", + "build:js": "npm-run-all build:lib build:companion build:svelte build:locale-pack build:angular build:bundle", "build:ts": "yarn workspaces list --no-private --json | yarn node ./bin/build-ts.mjs && yarn workspace @uppy/svelte validate", "build:lib": "yarn node ./bin/build-lib.js", "build:locale-pack": "yarn workspace @uppy-dev/locale-pack build && eslint packages/@uppy/locales/src/en_US.js --fix && yarn workspace @uppy-dev/locale-pack test unused",