From 17598faac97454200090fee11d3e076362e0453f Mon Sep 17 00:00:00 2001 From: Mo Date: Sun, 12 Jun 2022 12:04:05 -0500 Subject: [PATCH] chore: workflows --- .github/workflows/desktop.release.yml | 6 +++--- package.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/desktop.release.yml b/.github/workflows/desktop.release.yml index e0645d22c..102d2519f 100644 --- a/.github/workflows/desktop.release.yml +++ b/.github/workflows/desktop.release.yml @@ -16,7 +16,7 @@ jobs: with: registry-url: 'https://registry.npmjs.org' - run: yarn install - - run: yarn build:web:all + - run: yarn build:web:front - name: Compile Mac run: yarn run webpack --config desktop.webpack.prod.js - name: MacX64 @@ -43,7 +43,7 @@ jobs: with: registry-url: 'https://registry.npmjs.org' - run: yarn install - - run: yarn build:web:all + - run: yarn build:web:front - name: Compile for AppImage run: yarn run webpack --config desktop.webpack.prod.js - name: AppImage @@ -105,7 +105,7 @@ jobs: with: registry-url: 'https://registry.npmjs.org' - run: yarn install - - run: yarn build:web:all + - run: yarn build:web:front - run: yarn run webpack --config desktop.webpack.prod.js - run: yarn run electron-builder --windows --x64 --ia32 --publish=never diff --git a/package.json b/package.json index 866a2c784..3b5fcd5d6 100644 --- a/package.json +++ b/package.json @@ -20,7 +20,7 @@ "build:toast": "yarn workspace @standardnotes/toast build", "build:styles": "yarn workspace @standardnotes/styles build", "build:web": "yarn workspace @standardnotes/web build", - "build:web:front": "yarn build:icons && yarn build:toast && yarn build:styles && yarn build:web", + "build:web:front": "yarn build:icons && yarn build:toast && yarn build:styles && yarn build:components && yarn build:web", "build:web:back": "yarn workspace @standardnotes/web-server build", "build:web:all": "yarn build:web:front && yarn build:web:back", "build:components": "yarn workspace @standardnotes/components-meta build",