From de94fb69cf1934a8ae9bb8d621a7a7b62210a217 Mon Sep 17 00:00:00 2001 From: Mo Date: Tue, 7 Jun 2022 12:04:11 -0500 Subject: [PATCH] chore: fix scripts path --- .github/workflows/desktop.dev.yml | 2 +- packages/desktop/package.json | 3 ++- packages/web-server/package.json | 1 + packages/web/package.json | 1 + 4 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/desktop.dev.yml b/.github/workflows/desktop.dev.yml index 62e99330c..cfcc4f1f3 100644 --- a/.github/workflows/desktop.dev.yml +++ b/.github/workflows/desktop.dev.yml @@ -20,7 +20,7 @@ jobs: node-version: '14.x' registry-url: 'https://registry.npmjs.org' - run: yarn setup - - run: node scripts/desktop/build.mjs appimage-x64 + - run: node ../../scripts/desktop/build.mjs appimage-x64 - uses: actions/upload-artifact@v2 with: name: 'AppImage' diff --git a/packages/desktop/package.json b/packages/desktop/package.json index 6986858f1..086c3f744 100644 --- a/packages/desktop/package.json +++ b/packages/desktop/package.json @@ -3,6 +3,7 @@ "main": "./app/dist/index.js", "version": "3.20.2", "license": "AGPL-3.0-or-later", + "private": true, "repository": { "type": "git", "url": "git://github.com/standardnotes/app" @@ -36,7 +37,7 @@ "fs-extra": "^10.1.0", "mime-types": "^2.1.35", "mobx": "^6.5.0", - "@standardnotes/web": "^3.20.4", + "@standardnotes/web": "*", "@electron/remote": "^2.0.8", "electron": "17.4.2", "lodash": "^4.17.21", diff --git a/packages/web-server/package.json b/packages/web-server/package.json index 63b6c4e6e..3cecb5f84 100644 --- a/packages/web-server/package.json +++ b/packages/web-server/package.json @@ -2,6 +2,7 @@ "name": "@standardnotes/web-server", "version": "1.0.0", "license": "AGPL-3.0-or-later", + "private": true, "author": "Standard Notes", "description": "Ruby on Rails web server for hosting the web application", "engines": { diff --git a/packages/web/package.json b/packages/web/package.json index c67de3677..219a906b4 100644 --- a/packages/web/package.json +++ b/packages/web/package.json @@ -4,6 +4,7 @@ "license": "AGPL-3.0-or-later", "main": "dist/app.js", "author": "Standard Notes", + "private": true, "files": [ "dist" ],