From 97d1222d5f51e732b5c1c6d5ef6af52c52fb800b Mon Sep 17 00:00:00 2001 From: "bastian.ganze" Date: Sat, 26 Aug 2023 18:13:35 +0200 Subject: [PATCH] try different approach --- package.json | 8 ++++---- server/package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index 11401d4..1e9de44 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "weebsync", - "version": "0.7.2", + "version": "0.7.3", "description": "A small tool to automatically sync files from an ftp server.", "license": "MIT", "private": true, @@ -11,9 +11,9 @@ ], "outputPath": "dist", "targets": [ - "latest-linuxstatic", - "latest-win-x64", - "latest-mac-x64" + "node16-linuxstatic", + "node16-win-x64", + "node16-mac-x64" ] }, "scripts": { diff --git a/server/package.json b/server/package.json index a1f449e..87fc2f7 100644 --- a/server/package.json +++ b/server/package.json @@ -5,7 +5,7 @@ "license": "MIT", "main": "./build/main.js", "scripts": { - "build": "tsc && ts-node --skipProject build.ts && rollup -c --bundleConfigAsCjs && rm ../build/index.mjs", + "build": "tsc && ts-node --skipProject build.ts && rollup -c && rm ../build/index.mjs", "dev": "tsc && esrun --watch=src/*.ts src/index.ts" }, "author": "Bastian Ganze",