@blinkk/root-cms 2.1.2-alpha.0 → 2.2.1-alpha.1
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/app.js +101 -114
- package/dist/plugin.js +245 -1
- package/dist/ui/signin.js +1 -1463
- package/dist/ui/signin.js.LEGAL.txt +578 -0
- package/dist/ui/ui.css +1 -1
- package/dist/ui/ui.js +100 -3575
- package/dist/ui/ui.js.LEGAL.txt +1789 -0
- package/package.json +9 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blinkk/root-cms",
|
|
3
|
-
"version": "2.1
|
|
3
|
+
"version": "2.2.1-alpha.1",
|
|
4
4
|
"author": "s@blinkk.com",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"engines": {
|
|
@@ -99,7 +99,7 @@
|
|
|
99
99
|
"@mantine/modals": "4.2.12",
|
|
100
100
|
"@mantine/notifications": "4.2.12",
|
|
101
101
|
"@mantine/spotlight": "4.2.12",
|
|
102
|
-
"@preact/compat": "
|
|
102
|
+
"@preact/compat": "18.3.1",
|
|
103
103
|
"@tabler/icons-preact": "2.47.0",
|
|
104
104
|
"@types/body-parser": "1.19.3",
|
|
105
105
|
"@types/fnv-plus": "1.3.2",
|
|
@@ -110,7 +110,7 @@
|
|
|
110
110
|
"@types/jsonwebtoken": "9.0.1",
|
|
111
111
|
"@types/node": "24.3.1",
|
|
112
112
|
"concurrently": "7.6.0",
|
|
113
|
-
"esbuild": "0.
|
|
113
|
+
"esbuild": "0.25.9",
|
|
114
114
|
"firebase": "12.2.1",
|
|
115
115
|
"firebase-admin": "13.5.0",
|
|
116
116
|
"firebase-functions": "6.4.0",
|
|
@@ -125,18 +125,18 @@
|
|
|
125
125
|
"preact": "10.27.1",
|
|
126
126
|
"preact-render-to-string": "6.6.1",
|
|
127
127
|
"preact-router": "4.1.2",
|
|
128
|
-
"react": "npm:@preact/compat
|
|
129
|
-
"react-dom": "npm:@preact/compat
|
|
128
|
+
"react": "npm:@preact/compat@18.3.1",
|
|
129
|
+
"react-dom": "npm:@preact/compat@18.3.1",
|
|
130
130
|
"react-json-view-compare": "2.0.2",
|
|
131
131
|
"tsup": "8.5.0",
|
|
132
132
|
"typescript": "5.9.2",
|
|
133
133
|
"vite": "7.1.4",
|
|
134
134
|
"vitest": "3.2.4",
|
|
135
135
|
"yjs": "13.6.27",
|
|
136
|
-
"@blinkk/root": "2.1
|
|
136
|
+
"@blinkk/root": "2.2.1-alpha.1"
|
|
137
137
|
},
|
|
138
138
|
"peerDependencies": {
|
|
139
|
-
"@blinkk/root": "2.1
|
|
139
|
+
"@blinkk/root": "2.2.1-alpha.1",
|
|
140
140
|
"firebase-admin": ">=11",
|
|
141
141
|
"firebase-functions": ">=4",
|
|
142
142
|
"preact": ">=10",
|
|
@@ -151,8 +151,8 @@
|
|
|
151
151
|
"build": "rm -rf dist && concurrently -n \"core,signin,ui\" npm:build:core npm:build:signin npm:build:ui",
|
|
152
152
|
"build:core": "tsup-node --config=./core/tsup.config.ts",
|
|
153
153
|
"//": "NOTE: esbuild is used here because tsup doesn't currently support aliases.",
|
|
154
|
-
"build:ui": "esbuild ui/ui.tsx --bundle --minify --alias:react=@preact/compat --alias:react-dom=@preact/compat --tsconfig=ui/tsconfig.json --outdir=dist/ui",
|
|
155
|
-
"build:signin": "esbuild signin/signin.tsx --bundle --minify --tsconfig=signin/tsconfig.json --outdir=dist/ui",
|
|
154
|
+
"build:ui": "esbuild ui/ui.tsx --bundle --minify --alias:react=@preact/compat --alias:react-dom=@preact/compat --tsconfig=ui/tsconfig.json --outdir=dist/ui --legal-comments=external",
|
|
155
|
+
"build:signin": "esbuild signin/signin.tsx --bundle --minify --tsconfig=signin/tsconfig.json --outdir=dist/ui --legal-comments=external",
|
|
156
156
|
"dev": "rm -rf dist && concurrently -k -n \"core,ui\" npm:dev:core npm:dev:signin npm:dev:ui",
|
|
157
157
|
"dev:core": "pnpm build:core --watch",
|
|
158
158
|
"dev:signin": "pnpm build:signin --watch",
|