Skip to content

Commit

Permalink
Version bump + trying the postinstall banner
Browse files Browse the repository at this point in the history
  • Loading branch information
David Fahlander committed Dec 4, 2024
1 parent 319056a commit 3e5c7b0
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 2 deletions.
5 changes: 3 additions & 2 deletions addons/dexie-cloud/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dexie-cloud-addon",
"version": "4.1.0-alpha.23",
"version": "4.1.0-beta.25",
"description": "Dexie addon that syncs with to Dexie Cloud",
"main": "dist/umd/dexie-cloud-addon.js",
"type": "module",
Expand Down Expand Up @@ -55,7 +55,8 @@
"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.*"
"clean": "rm -rf tools/tmp dist test/unit/bundle.*",
"postinstall": "tools/postinstall-banner.js"
},
"just-build": {
"default": [
Expand Down
23 changes: 23 additions & 0 deletions addons/dexie-cloud/tools/postinstall-banner.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
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);

0 comments on commit 3e5c7b0

Please sign in to comment.