diff options
-rw-r--r-- | .github/workflows/push-test.yml | 2 | ||||
-rw-r--r-- | package.json | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/push-test.yml b/.github/workflows/push-test.yml index 1542b044..48809fea 100644 --- a/.github/workflows/push-test.yml +++ b/.github/workflows/push-test.yml @@ -27,7 +27,7 @@ jobs: - name: install app dependencies and build it run: | npm install - ./node_modules/.bin/rollup -c + ./node_modules/.bin/rollup --config npm run tauri build - uses: tauri-apps/tauri-action@v0 env: diff --git a/package.json b/package.json index 1de8ec1e..ad89121c 100644 --- a/package.json +++ b/package.json @@ -3,8 +3,8 @@ "scripts": { "tauri": "tauri", "localhost": "./node_modules/.bin/servor dist index.html 8080 --reload", - "ui-build": "./node_modules/.bin/rollup -c", - "ui-dev": "./node_modules/.bin/rollup -c -w & npm run localhost" + "ui-build": "./node_modules/.bin/rollup --config", + "ui-dev": "./node_modules/.bin/rollup --config --watch & npm run localhost" }, "dependencies": { "@tauri-apps/api": "^1.0.2" |