From 48aaf2b98f60a3e88bfc19e5d0cef1af41ecd4f1 Mon Sep 17 00:00:00 2001 From: David Fahlander Date: Thu, 5 Dec 2024 09:09:20 +0100 Subject: [PATCH] Remove postinstall banner --- addons/dexie-cloud/package.json | 5 ++--- addons/dexie-cloud/postinstall-banner.js | 23 ----------------------- 2 files changed, 2 insertions(+), 26 deletions(-) delete mode 100644 addons/dexie-cloud/postinstall-banner.js diff --git a/addons/dexie-cloud/package.json b/addons/dexie-cloud/package.json index 4424a6d0b..3d63adf92 100644 --- a/addons/dexie-cloud/package.json +++ b/addons/dexie-cloud/package.json @@ -1,6 +1,6 @@ { "name": "dexie-cloud-addon", - "version": "4.1.0-beta.26", + "version": "4.1.0-beta.32", "description": "Dexie addon that syncs with to Dexie Cloud", "main": "dist/umd/dexie-cloud-addon.js", "type": "module", @@ -55,8 +55,7 @@ "test-unit": "karma start test/unit/karma.conf.js --single-run", "build": "rollup -c tools/build-configs/rollup.config.mjs", "watch": "rollup -c tools/build-configs/rollup.config.mjs --watch", - "clean": "rm -rf tools/tmp dist test/unit/bundle.*", - "postinstall": "node ./postinstall-banner.js" + "clean": "rm -rf tools/tmp dist test/unit/bundle.*" }, "just-build": { "default": [ diff --git a/addons/dexie-cloud/postinstall-banner.js b/addons/dexie-cloud/postinstall-banner.js deleted file mode 100644 index 20494a84f..000000000 --- a/addons/dexie-cloud/postinstall-banner.js +++ /dev/null @@ -1,23 +0,0 @@ -const banner = ` - - /$$ /$$ /$$ /$$ /$$ -| $$ | $$ | $$ | $$ | $$ -| $$ | $$ /$$$$$$ /$$$$$$$| $$ /$$ /$$$$$$ /$$$$$$ | $$$$$$$ /$$$$$$ /$$$$$$$ -| $$$$$$$$ |____ $$ /$$_____/| $$ /$$/ |____ $$|_ $$_/ | $$__ $$ /$$__ $$| $$__ $$ -| $$__ $$ /$$$$$$$| $$ | $$$$$$/ /$$$$$$$ | $$ | $$ \\ $$| $$ \\ $$| $$ \\ $$ -| $$ | $$ /$$__ $$| $$ | $$_ $$ /$$__ $$ | $$ /$$| $$ | $$| $$ | $$| $$ | $$ -| $$ | $$| $$$$$$$| $$$$$$$| $$ \\ $$| $$$$$$$ | $$$$/| $$ | $$| $$$$$$/| $$ | $$ -|__/ |__/ \\_______/ \\_______/|__/ \\__/ \\_______/ \\___/ |__/ |__/ \\______/ |__/ |__/ - - - - -🌟 Welcomne to Dexie.js Hackathon! 🌟 -📅 Date: January 3, 2025 -🕒 Start coding with Dexie Cloud and win prices! - -For more information: https://dexie.com/hackathon - -Good luck! 🚀`; - -console.log(banner); \ No newline at end of file