@quilted/create 0.2.17 → 0.2.18

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 CHANGED
@@ -1,5 +1,13 @@
1
1
  # @quilted/create
2
2
 
3
+ ## 0.2.18
4
+
5
+ ### Patch Changes
6
+
7
+ - [#714](https://github.com/lemonmade/quilt/pull/714) [`d4bda43`](https://github.com/lemonmade/quilt/commit/d4bda430900d0e4afd5ccecb04abe9ac81245486) Thanks [@lemonmade](https://github.com/lemonmade)! - Update GraphQL dependencies
8
+
9
+ - [#699](https://github.com/lemonmade/quilt/pull/699) [`8335c47`](https://github.com/lemonmade/quilt/commit/8335c47fa1896ad65d5cd218fe068f22627815d9) Thanks [@lemonmade](https://github.com/lemonmade)! - Update async APIs
10
+
3
11
  ## 0.2.17
4
12
 
5
13
  ### Patch Changes
@@ -2,9 +2,9 @@ import { __exports as out } from '../../../../../../../_virtual/index5.mjs';
2
2
  import './providers/async.mjs';
3
3
  import './providers/sync.mjs';
4
4
  import './settings.mjs';
5
- import { __exports as settings } from '../../../../../../../_virtual/settings3.mjs';
6
- import { __exports as async$1 } from '../../../../../../../_virtual/async4.mjs';
7
- import { __exports as sync$1 } from '../../../../../../../_virtual/sync4.mjs';
5
+ import { __exports as settings } from '../../../../../../../_virtual/settings2.mjs';
6
+ import { __exports as async$1 } from '../../../../../../../_virtual/async3.mjs';
7
+ import { __exports as sync$1 } from '../../../../../../../_virtual/sync3.mjs';
8
8
 
9
9
  Object.defineProperty(out, "__esModule", {
10
10
  value: true
@@ -1,4 +1,4 @@
1
- import { __exports as async } from '../../../../../../../../_virtual/async4.mjs';
1
+ import { __exports as async } from '../../../../../../../../_virtual/async3.mjs';
2
2
 
3
3
  Object.defineProperty(async, "__esModule", {
4
4
  value: true
@@ -1,4 +1,4 @@
1
- import { __exports as sync } from '../../../../../../../../_virtual/sync4.mjs';
1
+ import { __exports as sync } from '../../../../../../../../_virtual/sync3.mjs';
2
2
 
3
3
  Object.defineProperty(sync, "__esModule", {
4
4
  value: true
@@ -1,4 +1,4 @@
1
- import { __exports as settings } from '../../../../../../../_virtual/settings3.mjs';
1
+ import { __exports as settings } from '../../../../../../../_virtual/settings2.mjs';
2
2
  import './adapters/fs.mjs';
3
3
  import { __exports as fs$1 } from '../../../../../../../_virtual/fs2.mjs';
4
4
 
@@ -3,10 +3,10 @@ import './providers/async.mjs';
3
3
  import './providers/stream.mjs';
4
4
  import './providers/sync.mjs';
5
5
  import './settings.mjs';
6
- import { __exports as settings } from '../../../../../../../_virtual/settings2.mjs';
7
- import { __exports as async } from '../../../../../../../_virtual/async3.mjs';
6
+ import { __exports as settings } from '../../../../../../../_virtual/settings3.mjs';
7
+ import { __exports as async } from '../../../../../../../_virtual/async4.mjs';
8
8
  import { __exports as stream } from '../../../../../../../_virtual/stream4.mjs';
9
- import { __exports as sync } from '../../../../../../../_virtual/sync3.mjs';
9
+ import { __exports as sync } from '../../../../../../../_virtual/sync4.mjs';
10
10
 
11
11
  Object.defineProperty(out, "__esModule", {
12
12
  value: true
@@ -1,4 +1,4 @@
1
- import { __exports as async } from '../../../../../../../../_virtual/async3.mjs';
1
+ import { __exports as async } from '../../../../../../../../_virtual/async4.mjs';
2
2
  import '../readers/async.mjs';
3
3
  import { __exports as async$1 } from '../../../../../../../../_virtual/async5.mjs';
4
4
 
@@ -1,4 +1,4 @@
1
- import { __exports as sync } from '../../../../../../../../_virtual/sync3.mjs';
1
+ import { __exports as sync } from '../../../../../../../../_virtual/sync4.mjs';
2
2
  import '../readers/sync.mjs';
3
3
  import { __exports as sync$1 } from '../../../../../../../../_virtual/sync5.mjs';
4
4
 
@@ -1,4 +1,4 @@
1
- import { __exports as settings } from '../../../../../../../_virtual/settings2.mjs';
1
+ import { __exports as settings } from '../../../../../../../_virtual/settings3.mjs';
2
2
  import path__default from 'node:path';
3
3
  import '../../../../../@nodelib_fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/index.mjs';
4
4
  import { __exports as out } from '../../../../../../../_virtual/index6.mjs';
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@quilted/create",
3
3
  "type": "module",
4
- "version": "0.2.17",
4
+ "version": "0.2.18",
5
5
  "license": "MIT",
6
6
  "repository": {
7
7
  "type": "git",
@@ -1,5 +1,5 @@
1
- import {createAsyncComponent} from '@quilted/quilt/async';
1
+ import {AsyncComponent} from '@quilted/quilt/async';
2
2
 
3
- export const Start = createAsyncComponent(
3
+ export const Start = AsyncComponent.from(
4
4
  () => import('./start/Start/Start.tsx'),
5
5
  );
@@ -11,7 +11,7 @@
11
11
  },
12
12
  "dependencies": {},
13
13
  "devDependencies": {
14
- "@quilted/quilt": "^0.6.0",
14
+ "@quilted/quilt": "workspace:^0.6.0",
15
15
  "@types/react": "^18.2.0",
16
16
  "@types/react-dom": "^18.2.0",
17
17
  "jsdom": "^24.0.0",
@@ -1,5 +1,5 @@
1
- import {createAsyncComponent} from '@quilted/quilt/async';
1
+ import {AsyncComponent} from '@quilted/quilt/async';
2
2
 
3
- export const Start = createAsyncComponent(
3
+ export const Start = AsyncComponent.from(
4
4
  () => import('./start/Start/Start.tsx'),
5
5
  );
@@ -16,7 +16,7 @@
16
16
  "@tanstack/react-query": "^5.0.0",
17
17
  "@types/react": "^18.2.0",
18
18
  "@types/react-dom": "^18.2.0",
19
- "graphql": "^16.7.0",
19
+ "graphql": "^16.8.0",
20
20
  "jsdom": "^24.0.0",
21
21
  "preact": "^10.20.0",
22
22
  "react": "npm:@quilted/react@^18.2.0",
@@ -1,5 +1,5 @@
1
- import {createAsyncComponent} from '@quilted/quilt/async';
1
+ import {AsyncComponent} from '@quilted/quilt/async';
2
2
 
3
- export const Start = createAsyncComponent(
3
+ export const Start = AsyncComponent.from(
4
4
  () => import('./start/Start/Start.tsx'),
5
5
  );