dexie-cloud-addon 4.1.0-beta.25 → 4.1.0-beta.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/modern/dexie-cloud-addon.js +3 -3
- package/dist/modern/dexie-cloud-addon.min.js +1 -1
- package/dist/modern/service-worker.js +3 -3
- package/dist/modern/service-worker.min.js +1 -1
- package/dist/umd/dexie-cloud-addon.js +3 -3
- package/dist/umd/dexie-cloud-addon.min.js +1 -1
- package/dist/umd/service-worker.js +3 -3
- package/dist/umd/service-worker.min.js +1 -1
- package/package.json +2 -2
- package/postinstall-banner.js +23 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dexie-cloud-addon",
|
|
3
|
-
"version": "4.1.0-beta.
|
|
3
|
+
"version": "4.1.0-beta.26",
|
|
4
4
|
"description": "Dexie addon that syncs with to Dexie Cloud",
|
|
5
5
|
"main": "dist/umd/dexie-cloud-addon.js",
|
|
6
6
|
"type": "module",
|
|
@@ -97,6 +97,6 @@
|
|
|
97
97
|
"build": "rollup -c tools/build-configs/rollup.config.mjs",
|
|
98
98
|
"watch": "rollup -c tools/build-configs/rollup.config.mjs --watch",
|
|
99
99
|
"clean": "rm -rf tools/tmp dist test/unit/bundle.*",
|
|
100
|
-
"postinstall": "
|
|
100
|
+
"postinstall": "node ./postinstall-banner.js"
|
|
101
101
|
}
|
|
102
102
|
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
const banner = `
|
|
2
|
+
|
|
3
|
+
/$$ /$$ /$$ /$$ /$$
|
|
4
|
+
| $$ | $$ | $$ | $$ | $$
|
|
5
|
+
| $$ | $$ /$$$$$$ /$$$$$$$| $$ /$$ /$$$$$$ /$$$$$$ | $$$$$$$ /$$$$$$ /$$$$$$$
|
|
6
|
+
| $$$$$$$$ |____ $$ /$$_____/| $$ /$$/ |____ $$|_ $$_/ | $$__ $$ /$$__ $$| $$__ $$
|
|
7
|
+
| $$__ $$ /$$$$$$$| $$ | $$$$$$/ /$$$$$$$ | $$ | $$ \\ $$| $$ \\ $$| $$ \\ $$
|
|
8
|
+
| $$ | $$ /$$__ $$| $$ | $$_ $$ /$$__ $$ | $$ /$$| $$ | $$| $$ | $$| $$ | $$
|
|
9
|
+
| $$ | $$| $$$$$$$| $$$$$$$| $$ \\ $$| $$$$$$$ | $$$$/| $$ | $$| $$$$$$/| $$ | $$
|
|
10
|
+
|__/ |__/ \\_______/ \\_______/|__/ \\__/ \\_______/ \\___/ |__/ |__/ \\______/ |__/ |__/
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
🌟 Welcomne to Dexie.js Hackathon! 🌟
|
|
16
|
+
📅 Date: January 3, 2025
|
|
17
|
+
🕒 Start coding with Dexie Cloud and win prices!
|
|
18
|
+
|
|
19
|
+
For more information: https://dexie.com/hackathon
|
|
20
|
+
|
|
21
|
+
Good luck! 🚀`;
|
|
22
|
+
|
|
23
|
+
console.log(banner);
|