ignotum 0.0.4 → 0.0.6
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/README.md +3 -0
- package/dist/cli/bin.mjs +269 -78
- package/dist/cli/bin.mjs.map +1 -1
- package/dist/runtime/client.js +27 -2
- package/dist/runtime/client.js.map +1 -1
- package/package.json +3 -3
- package/src/cli/build/client.ts +27 -11
- package/src/cli/build/public.ts +186 -0
- package/src/cli/build/server.ts +1 -0
- package/src/cli/client-config.ts +7 -0
package/README.md
CHANGED
|
@@ -158,6 +158,9 @@ any filename when imported from app code.
|
|
|
158
158
|
The optional `client/icon.svg` file becomes the favicon automatically. If it is absent, Ignotum
|
|
159
159
|
does not add a favicon link.
|
|
160
160
|
|
|
161
|
+
Optional files in a top-level `public` directory keep their relative paths as public URLs. Ignotum
|
|
162
|
+
accepts AVIF, GIF, ICO, JPEG, PNG, WebP, and PDF files there; `client/public` is not supported.
|
|
163
|
+
|
|
161
164
|
## Keep working
|
|
162
165
|
|
|
163
166
|
The dev server watches the schema and server modules, regenerates bindings, and reloads the app.
|