@quilted/quilt 0.8.11 → 0.9.0
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/CHANGELOG.md +26 -0
- package/build/esm/hono/node.mjs +1 -0
- package/build/esm/hono.mjs +1 -0
- package/build/esm/server.mjs +0 -1
- package/build/esnext/hono/node.esnext +1 -0
- package/build/esnext/hono.esnext +1 -0
- package/build/esnext/server.esnext +0 -1
- package/build/tsconfig.tsbuildinfo +1 -1
- package/build/typescript/browser.d.ts +1 -0
- package/build/typescript/browser.d.ts.map +1 -1
- package/build/typescript/hono/node.d.ts +2 -0
- package/build/typescript/hono/node.d.ts.map +1 -0
- package/build/typescript/hono.d.ts +2 -0
- package/build/typescript/hono.d.ts.map +1 -0
- package/build/typescript/index.d.ts +1 -0
- package/build/typescript/index.d.ts.map +1 -1
- package/build/typescript/modules/magic.d.ts +23 -0
- package/build/typescript/modules/magic.d.ts.map +1 -0
- package/build/typescript/modules.d.ts +3 -22
- package/build/typescript/modules.d.ts.map +1 -1
- package/build/typescript/server.d.ts +1 -1
- package/build/typescript/server.d.ts.map +1 -1
- package/package.json +22 -34
- package/source/browser.ts +3 -0
- package/source/hono/node.ts +1 -0
- package/source/hono.ts +1 -0
- package/source/index.ts +2 -0
- package/source/modules/magic.ts +30 -0
- package/source/modules.ts +3 -30
- package/source/server.ts +3 -1
- package/tsconfig.json +1 -1
- package/build/esm/globals.mjs +0 -15
- package/build/esm/request-router/node.mjs +0 -1
- package/build/esm/request-router.mjs +0 -1
- package/build/esnext/globals.esnext +0 -15
- package/build/esnext/request-router/node.esnext +0 -1
- package/build/esnext/request-router.esnext +0 -1
- package/build/typescript/globals.d.ts +0 -11
- package/build/typescript/globals.d.ts.map +0 -1
- package/build/typescript/request-router/node.d.ts +0 -2
- package/build/typescript/request-router/node.d.ts.map +0 -1
- package/build/typescript/request-router.d.ts +0 -2
- package/build/typescript/request-router.d.ts.map +0 -1
- package/source/globals.ts +0 -26
- package/source/request-router/node.ts +0 -1
- package/source/request-router.ts +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# @quilted/quilt
|
|
2
2
|
|
|
3
|
+
## 0.9.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#872](https://github.com/lemonmade/quilt/pull/872) [`8bf65e7`](https://github.com/lemonmade/quilt/commit/8bf65e797f929ee95730323426c229409e65c9a4) Thanks [@lemonmade](https://github.com/lemonmade)! - Replace @quilted/request-router with Hono
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [[`8bf65e7`](https://github.com/lemonmade/quilt/commit/8bf65e797f929ee95730323426c229409e65c9a4)]:
|
|
12
|
+
- @quilted/preact-localize@0.4.0
|
|
13
|
+
- @quilted/preact-browser@0.2.0
|
|
14
|
+
- @quilted/hono@0.2.0
|
|
15
|
+
- @quilted/preact-async@0.1.21
|
|
16
|
+
- @quilted/preact-router@0.2.13
|
|
17
|
+
|
|
18
|
+
## 0.8.12
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- [#871](https://github.com/lemonmade/quilt/pull/871) [`c16b322`](https://github.com/lemonmade/quilt/commit/c16b3224d3c86bc3a3b6f6af44267650d1e8dc1d) Thanks [@lemonmade](https://github.com/lemonmade)! - Remove @quilt/quilt/globals module
|
|
23
|
+
|
|
24
|
+
- Updated dependencies [[`c16b322`](https://github.com/lemonmade/quilt/commit/c16b3224d3c86bc3a3b6f6af44267650d1e8dc1d), [`64fc42b`](https://github.com/lemonmade/quilt/commit/64fc42b87ca72eec8dfab211d2ddecdbbaa0e4ac)]:
|
|
25
|
+
- @quilted/async@0.4.23
|
|
26
|
+
- @quilted/preact-browser@0.1.17
|
|
27
|
+
- @quilted/graphql@3.3.9
|
|
28
|
+
|
|
3
29
|
## 0.8.11
|
|
4
30
|
|
|
5
31
|
### Patch Changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@quilted/hono/node';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@quilted/hono';
|
package/build/esm/server.mjs
CHANGED
|
@@ -2,4 +2,3 @@ export { renderToStaticMarkup, renderToString, renderToStringAsync } from 'preac
|
|
|
2
2
|
export * from '@quilted/preact-browser/server';
|
|
3
3
|
export * from '@quilted/assets';
|
|
4
4
|
export { parseAcceptLanguageHeader } from '@quilted/preact-localize';
|
|
5
|
-
export { createRequestRouterLocalization } from '@quilted/preact-localize/request-router';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@quilted/hono/node';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@quilted/hono';
|
|
@@ -2,4 +2,3 @@ export { renderToStaticMarkup, renderToString, renderToStringAsync } from 'preac
|
|
|
2
2
|
export * from '@quilted/preact-browser/server';
|
|
3
3
|
export * from '@quilted/assets';
|
|
4
4
|
export { parseAcceptLanguageHeader } from '@quilted/preact-localize';
|
|
5
|
-
export { createRequestRouterLocalization } from '@quilted/preact-localize/request-router';
|