@quilted/quilt 0.6.16 → 0.7.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 +6 -0
- package/build/esm/async.mjs +1 -3
- package/build/esm/browser.mjs +2 -2
- package/build/esm/graphql/testing.mjs +1 -1
- package/build/esm/graphql.mjs +1 -2
- package/build/esm/localize.mjs +1 -1
- package/build/esm/navigate/testing.mjs +1 -1
- package/build/esm/navigate.mjs +1 -1
- package/build/esm/performance.mjs +1 -1
- package/build/esm/server/ServerContext.mjs +5 -5
- package/build/esm/server/request-router.mjs +21 -21
- package/build/esm/server.mjs +4 -3
- package/build/esm/signals.mjs +1 -1
- package/build/esm/testing.mjs +6 -0
- package/build/esm/threads.mjs +1 -1
- package/build/esnext/async.esnext +1 -3
- package/build/esnext/browser.esnext +2 -2
- package/build/esnext/graphql/testing.esnext +1 -1
- package/build/esnext/graphql.esnext +1 -2
- package/build/esnext/localize.esnext +1 -1
- package/build/esnext/navigate/testing.esnext +1 -1
- package/build/esnext/navigate.esnext +1 -1
- package/build/esnext/performance.esnext +1 -1
- package/build/esnext/server/ServerContext.esnext +3 -3
- package/build/esnext/server/request-router.esnext +3 -3
- package/build/esnext/server.esnext +4 -3
- package/build/esnext/signals.esnext +1 -1
- package/build/esnext/testing.esnext +5 -0
- package/build/esnext/threads.esnext +1 -1
- package/build/tsconfig.tsbuildinfo +1 -1
- package/build/typescript/async.d.ts +1 -3
- package/build/typescript/async.d.ts.map +1 -1
- package/build/typescript/browser.d.ts +1 -1
- package/build/typescript/browser.d.ts.map +1 -1
- package/build/typescript/context.d.ts +2 -0
- package/build/typescript/context.d.ts.map +1 -0
- package/build/typescript/graphql/testing.d.ts +1 -1
- package/build/typescript/graphql/testing.d.ts.map +1 -1
- package/build/typescript/graphql.d.ts +1 -2
- package/build/typescript/graphql.d.ts.map +1 -1
- package/build/typescript/localize.d.ts +1 -2
- package/build/typescript/localize.d.ts.map +1 -1
- package/build/typescript/modules.d.ts +1 -2
- package/build/typescript/modules.d.ts.map +1 -1
- package/build/typescript/navigate/testing.d.ts +1 -1
- package/build/typescript/navigate/testing.d.ts.map +1 -1
- package/build/typescript/navigate.d.ts +1 -2
- package/build/typescript/navigate.d.ts.map +1 -1
- package/build/typescript/performance.d.ts +1 -2
- package/build/typescript/performance.d.ts.map +1 -1
- package/build/typescript/server/ServerContext.d.ts +3 -3
- package/build/typescript/server/ServerContext.d.ts.map +1 -1
- package/build/typescript/server/request-router.d.ts +3 -3
- package/build/typescript/server/request-router.d.ts.map +1 -1
- package/build/typescript/server.d.ts +4 -3
- package/build/typescript/server.d.ts.map +1 -1
- package/build/typescript/signals.d.ts +1 -1
- package/build/typescript/signals.d.ts.map +1 -1
- package/build/typescript/testing.d.ts +9 -0
- package/build/typescript/testing.d.ts.map +1 -0
- package/build/typescript/threads.d.ts +1 -2
- package/build/typescript/threads.d.ts.map +1 -1
- package/package.json +24 -38
- package/source/async.ts +1 -18
- package/source/browser.ts +1 -1
- package/source/context.ts +1 -0
- package/source/graphql/testing.ts +1 -1
- package/source/graphql.ts +1 -2
- package/source/localize.ts +1 -21
- package/source/modules.ts +1 -1
- package/source/navigate/testing.ts +1 -1
- package/source/navigate.ts +1 -24
- package/source/performance.ts +1 -12
- package/source/server/ServerContext.tsx +5 -5
- package/source/server/request-router.tsx +5 -5
- package/source/server.ts +8 -3
- package/source/signals.ts +1 -1
- package/source/{react/testing.ts → testing.ts} +2 -8
- package/source/threads.ts +1 -12
- package/tsconfig.json +11 -11
- package/build/esm/react/testing.mjs +0 -6
- package/build/esm/react.mjs +0 -1
- package/build/esnext/react/testing.esnext +0 -5
- package/build/esnext/react.esnext +0 -1
- package/source/react.ts +0 -1
package/tsconfig.json
CHANGED
|
@@ -2,7 +2,8 @@
|
|
|
2
2
|
"extends": "@quilted/typescript/tsconfig.project.json",
|
|
3
3
|
"compilerOptions": {
|
|
4
4
|
"rootDir": "source",
|
|
5
|
-
"outDir": "build/typescript"
|
|
5
|
+
"outDir": "build/typescript",
|
|
6
|
+
"jsxImportSource": "preact"
|
|
6
7
|
},
|
|
7
8
|
"include": ["source"],
|
|
8
9
|
"exclude": ["**/*.test.ts", "**/*.test.tsx"],
|
|
@@ -11,19 +12,18 @@
|
|
|
11
12
|
{"path": "../async"},
|
|
12
13
|
{"path": "../events"},
|
|
13
14
|
{"path": "../graphql"},
|
|
15
|
+
{"path": "../preact-async"},
|
|
16
|
+
{"path": "../preact-browser"},
|
|
17
|
+
{"path": "../preact-context"},
|
|
18
|
+
{"path": "../preact-graphql"},
|
|
19
|
+
{"path": "../preact-localize"},
|
|
20
|
+
{"path": "../preact-performance"},
|
|
21
|
+
{"path": "../preact-router"},
|
|
22
|
+
{"path": "../preact-signals"},
|
|
23
|
+
{"path": "../preact-workers"},
|
|
14
24
|
{"path": "../react"},
|
|
15
|
-
{"path": "../react-async"},
|
|
16
|
-
{"path": "../react-browser"},
|
|
17
25
|
{"path": "../react-dom"},
|
|
18
|
-
{"path": "../react-graphql"},
|
|
19
|
-
{"path": "../react-idle"},
|
|
20
|
-
{"path": "../react-localize"},
|
|
21
|
-
{"path": "../react-performance"},
|
|
22
|
-
{"path": "../react-router"},
|
|
23
|
-
{"path": "../react-signals"},
|
|
24
26
|
{"path": "../react-testing"},
|
|
25
|
-
{"path": "../react-utilities"},
|
|
26
|
-
{"path": "../react-workers"},
|
|
27
27
|
{"path": "../request-router"},
|
|
28
28
|
{"path": "../signals"},
|
|
29
29
|
{"path": "../threads"},
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { expect } from 'vitest';
|
|
2
|
-
import { matchers } from '@quilted/react-testing/matchers';
|
|
3
|
-
export { createRender, destroyAll, render, rendered } from '@quilted/react-testing/preact';
|
|
4
|
-
|
|
5
|
-
// @ts-expect-error Incompatibilities between `expect()` and vitest
|
|
6
|
-
expect.extend(matchers);
|
package/build/esm/react.mjs
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '@quilted/react-utilities';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '@quilted/react-utilities';
|
package/source/react.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '@quilted/react-utilities';
|