@quilted/create 0.1.43 → 0.1.45
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 +16 -0
- package/build/cjs/app.cjs +6 -6
- package/build/esm/app.mjs +6 -6
- package/build/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/source/app.ts +14 -4
- package/templates/app-basic/browser.tsx +8 -0
- package/templates/app-basic/features/Start/Start.test.tsx +1 -1
- package/templates/app-basic/features/Start/Start.tsx +1 -1
- package/templates/app-basic/features/Start.tsx +3 -1
- package/templates/app-basic/quilt.project.ts +3 -1
- package/templates/app-basic/server.tsx +3 -6
- package/templates/app-empty/quilt.project.ts +1 -1
- package/templates/app-graphql/App.tsx +70 -0
- package/templates/app-graphql/_gitignore +3 -0
- package/templates/app-graphql/_prettierignore +3 -0
- package/templates/app-graphql/browser.tsx +8 -0
- package/templates/app-graphql/features/Start/Start.test.tsx +22 -0
- package/templates/app-graphql/features/Start/Start.tsx +20 -0
- package/templates/app-graphql/features/Start/StartQuery.graphql +3 -0
- package/templates/app-graphql/features/Start.tsx +3 -0
- package/templates/app-graphql/foundation/Head/Head.test.tsx +25 -0
- package/templates/app-graphql/foundation/Head/Head.tsx +34 -0
- package/templates/app-graphql/foundation/Head.tsx +1 -0
- package/templates/app-graphql/foundation/Http/Http.test.tsx +24 -0
- package/templates/app-graphql/foundation/Http/Http.tsx +112 -0
- package/templates/app-graphql/foundation/Http.tsx +1 -0
- package/templates/app-graphql/foundation/Metrics/Metrics.tsx +23 -0
- package/templates/app-graphql/foundation/Metrics.tsx +1 -0
- package/templates/app-graphql/graphql/schema.graphql +9 -0
- package/templates/app-graphql/graphql.config.ts +13 -0
- package/templates/app-graphql/package.json +38 -0
- package/templates/app-graphql/quilt.project.ts +14 -0
- package/templates/app-graphql/server/graphql.ts +42 -0
- package/templates/app-graphql/server.tsx +50 -0
- package/templates/app-graphql/shared/types.ts +1 -0
- package/templates/app-graphql/tests/graphql.ts +13 -0
- package/templates/app-graphql/tests/mount.tsx +116 -0
- package/templates/app-graphql/tsconfig.json +13 -0
- package/templates/app-single-file/quilt.project.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @quilted/create
|
|
2
2
|
|
|
3
|
+
## 0.1.45
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`58e3190e`](https://github.com/lemonmade/quilt/commit/58e3190e122aa9a4dc37d3dfb9ec42c7fefd627f) Thanks [@lemonmade](https://github.com/lemonmade)! - Add initial GraphQL template
|
|
8
|
+
|
|
9
|
+
- [#495](https://github.com/lemonmade/quilt/pull/495) [`0b7db36e`](https://github.com/lemonmade/quilt/commit/0b7db36e5333067761c8a88fec5722057ab0e04f) Thanks [@lemonmade](https://github.com/lemonmade)! - Match server and browser app entries
|
|
10
|
+
|
|
11
|
+
## 0.1.44
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- [#489](https://github.com/lemonmade/quilt/pull/489) [`c0dee75a`](https://github.com/lemonmade/quilt/commit/c0dee75aae600e882d419ee4e81b2c35d4772565) Thanks [@lemonmade](https://github.com/lemonmade)! - Use async component in basic template
|
|
16
|
+
|
|
17
|
+
- [`73f0748b`](https://github.com/lemonmade/quilt/commit/73f0748b77c8e88fc0bb088ad544c6a47c1501e8) Thanks [@lemonmade](https://github.com/lemonmade)! - Remove excess space in create package
|
|
18
|
+
|
|
3
19
|
## 0.1.43
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/build/cjs/app.cjs
CHANGED
|
@@ -452,7 +452,7 @@ async function getDirectory(argv, {
|
|
|
452
452
|
}
|
|
453
453
|
return directory;
|
|
454
454
|
}
|
|
455
|
-
const VALID_TEMPLATES = new Set(['basic', 'single-file', 'empty']);
|
|
455
|
+
const VALID_TEMPLATES = new Set(['basic', 'graphql', 'single-file', 'empty']);
|
|
456
456
|
async function getTemplate(argv) {
|
|
457
457
|
if (argv['--template'] && VALID_TEMPLATES.has(argv['--template'])) {
|
|
458
458
|
return argv['--template'];
|
|
@@ -468,13 +468,13 @@ async function getTemplate(argv) {
|
|
|
468
468
|
title: `${packageManager.bold_1('Itty-bitty')}, an entire web app in a single file`,
|
|
469
469
|
value: 'single-file'
|
|
470
470
|
}, {
|
|
471
|
-
title: `${packageManager.bold_1('Empty')},
|
|
471
|
+
title: `${packageManager.bold_1('Empty')}, a basic React app without any extra runtime dependencies`,
|
|
472
472
|
value: 'empty'
|
|
473
|
-
}
|
|
474
|
-
|
|
475
|
-
|
|
473
|
+
}, {
|
|
474
|
+
title: `${packageManager.bold_1('GraphQL')}, a web app with a GraphQL API, fetched using @tanstack/react-query`,
|
|
475
|
+
value: 'graphql'
|
|
476
|
+
}]
|
|
476
477
|
});
|
|
477
|
-
|
|
478
478
|
return template;
|
|
479
479
|
}
|
|
480
480
|
|
package/build/esm/app.mjs
CHANGED
|
@@ -430,7 +430,7 @@ async function getDirectory(argv, {
|
|
|
430
430
|
}
|
|
431
431
|
return directory;
|
|
432
432
|
}
|
|
433
|
-
const VALID_TEMPLATES = new Set(['basic', 'single-file', 'empty']);
|
|
433
|
+
const VALID_TEMPLATES = new Set(['basic', 'graphql', 'single-file', 'empty']);
|
|
434
434
|
async function getTemplate(argv) {
|
|
435
435
|
if (argv['--template'] && VALID_TEMPLATES.has(argv['--template'])) {
|
|
436
436
|
return argv['--template'];
|
|
@@ -446,13 +446,13 @@ async function getTemplate(argv) {
|
|
|
446
446
|
title: `${bold_1('Itty-bitty')}, an entire web app in a single file`,
|
|
447
447
|
value: 'single-file'
|
|
448
448
|
}, {
|
|
449
|
-
title: `${bold_1('Empty')},
|
|
449
|
+
title: `${bold_1('Empty')}, a basic React app without any extra runtime dependencies`,
|
|
450
450
|
value: 'empty'
|
|
451
|
-
}
|
|
452
|
-
|
|
453
|
-
|
|
451
|
+
}, {
|
|
452
|
+
title: `${bold_1('GraphQL')}, a web app with a GraphQL API, fetched using @tanstack/react-query`,
|
|
453
|
+
value: 'graphql'
|
|
454
|
+
}]
|
|
454
455
|
});
|
|
455
|
-
|
|
456
456
|
return template;
|
|
457
457
|
}
|
|
458
458
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.esnext.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/@quilted/typescript/definitions/assets.d.ts","../../../node_modules/@quilted/typescript/definitions/styles.d.ts","../../../node_modules/.pnpm/arg@5.0.1/node_modules/arg/index.d.ts","../../../node_modules/.pnpm/colorette@2.0.16/node_modules/colorette/index.d.ts","../../../node_modules/.pnpm/@types+common-tags@1.8.1/node_modules/@types/common-tags/index.d.ts","../../../node_modules/.pnpm/colorette@2.0.19/node_modules/colorette/index.d.ts","../../events/build/typescript/abort.d.ts","../../events/build/typescript/types.d.ts","../../events/build/typescript/on.d.ts","../../events/build/typescript/once.d.ts","../../events/build/typescript/listeners.d.ts","../../events/build/typescript/emitter.d.ts","../../events/build/typescript/index.d.ts","../../../node_modules/.pnpm/arg@5.0.2/node_modules/arg/index.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/assert.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/assert/strict.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/globals.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/buffer.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/child_process.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/cluster.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/console.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/constants.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/crypto.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/dgram.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/dns.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/dns/promises.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/domain.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/events.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/fs.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/http.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/http2.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/https.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/inspector.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/module.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/net.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/os.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/path.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/process.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/punycode.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/querystring.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/readline.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/repl.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/stream.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/stream/promises.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/stream/web.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/timers.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/timers/promises.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/tls.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/tty.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/url.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/util.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/v8.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/vm.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/wasi.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/zlib.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/globals.global.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/index.d.ts","../../../node_modules/.pnpm/@types+prompts@2.4.1/node_modules/@types/prompts/index.d.ts","../../cli-kit/build/typescript/prompt.d.ts","../../cli-kit/build/typescript/template.d.ts","../../cli-kit/build/typescript/package-manager.d.ts","../../cli-kit/build/typescript/index.d.ts","../source/help.ts","../../../node_modules/.pnpm/@types+prettier@2.6.3/node_modules/@types/prettier/index.d.ts","../../../node_modules/.pnpm/pkg-dir@6.0.1/node_modules/pkg-dir/index.d.ts","../../../node_modules/.pnpm/@types+prettier@2.6.3/node_modules/@types/prettier/standalone.d.ts","../../../node_modules/.pnpm/@types+prettier@2.6.3/node_modules/@types/prettier/parser-babel.d.ts","../../../node_modules/.pnpm/@types+prettier@2.6.3/node_modules/@types/prettier/parser-typescript.d.ts","../../../node_modules/.pnpm/@types+prettier@2.6.3/node_modules/@types/prettier/parser-yaml.d.ts","../source/shared.ts","../source/shared/prompts.ts","../source/shared/tsconfig.ts","../../../node_modules/.pnpm/yaml@2.1.1/node_modules/yaml/dist/parse/line-counter.d.ts","../../../node_modules/.pnpm/yaml@2.1.1/node_modules/yaml/dist/errors.d.ts","../../../node_modules/.pnpm/yaml@2.1.1/node_modules/yaml/dist/doc/applyReviver.d.ts","../../../node_modules/.pnpm/yaml@2.1.1/node_modules/yaml/dist/log.d.ts","../../../node_modules/.pnpm/yaml@2.1.1/node_modules/yaml/dist/nodes/toJS.d.ts","../../../node_modules/.pnpm/yaml@2.1.1/node_modules/yaml/dist/nodes/Scalar.d.ts","../../../node_modules/.pnpm/yaml@2.1.1/node_modules/yaml/dist/nodes/Collection.d.ts","../../../node_modules/.pnpm/yaml@2.1.1/node_modules/yaml/dist/nodes/YAMLMap.d.ts","../../../node_modules/.pnpm/yaml@2.1.1/node_modules/yaml/dist/nodes/YAMLSeq.d.ts","../../../node_modules/.pnpm/yaml@2.1.1/node_modules/yaml/dist/schema/types.d.ts","../../../node_modules/.pnpm/yaml@2.1.1/node_modules/yaml/dist/schema/Schema.d.ts","../../../node_modules/.pnpm/yaml@2.1.1/node_modules/yaml/dist/doc/createNode.d.ts","../../../node_modules/.pnpm/yaml@2.1.1/node_modules/yaml/dist/nodes/addPairToJSMap.d.ts","../../../node_modules/.pnpm/yaml@2.1.1/node_modules/yaml/dist/nodes/Pair.d.ts","../../../node_modules/.pnpm/yaml@2.1.1/node_modules/yaml/dist/schema/tags.d.ts","../../../node_modules/.pnpm/yaml@2.1.1/node_modules/yaml/dist/options.d.ts","../../../node_modules/.pnpm/yaml@2.1.1/node_modules/yaml/dist/stringify/stringify.d.ts","../../../node_modules/.pnpm/yaml@2.1.1/node_modules/yaml/dist/nodes/Node.d.ts","../../../node_modules/.pnpm/yaml@2.1.1/node_modules/yaml/dist/parse/cst-scalar.d.ts","../../../node_modules/.pnpm/yaml@2.1.1/node_modules/yaml/dist/parse/cst-stringify.d.ts","../../../node_modules/.pnpm/yaml@2.1.1/node_modules/yaml/dist/parse/cst-visit.d.ts","../../../node_modules/.pnpm/yaml@2.1.1/node_modules/yaml/dist/parse/cst.d.ts","../../../node_modules/.pnpm/yaml@2.1.1/node_modules/yaml/dist/nodes/Alias.d.ts","../../../node_modules/.pnpm/yaml@2.1.1/node_modules/yaml/dist/doc/Document.d.ts","../../../node_modules/.pnpm/yaml@2.1.1/node_modules/yaml/dist/doc/directives.d.ts","../../../node_modules/.pnpm/yaml@2.1.1/node_modules/yaml/dist/compose/composer.d.ts","../../../node_modules/.pnpm/yaml@2.1.1/node_modules/yaml/dist/parse/lexer.d.ts","../../../node_modules/.pnpm/yaml@2.1.1/node_modules/yaml/dist/parse/parser.d.ts","../../../node_modules/.pnpm/yaml@2.1.1/node_modules/yaml/dist/public-api.d.ts","../../../node_modules/.pnpm/yaml@2.1.1/node_modules/yaml/dist/schema/yaml-1.1/omap.d.ts","../../../node_modules/.pnpm/yaml@2.1.1/node_modules/yaml/dist/schema/yaml-1.1/set.d.ts","../../../node_modules/.pnpm/yaml@2.1.1/node_modules/yaml/dist/visit.d.ts","../../../node_modules/.pnpm/yaml@2.1.1/node_modules/yaml/dist/index.d.ts","../../../node_modules/.pnpm/@types+minimatch@3.0.5/node_modules/@types/minimatch/index.d.ts","../source/shared/package-manager.ts","../source/app.ts","../../../node_modules/.pnpm/@nodelib+fs.stat@2.0.5/node_modules/@nodelib/fs.stat/out/types/index.d.ts","../../../node_modules/.pnpm/@nodelib+fs.stat@2.0.5/node_modules/@nodelib/fs.stat/out/adapters/fs.d.ts","../../../node_modules/.pnpm/@nodelib+fs.stat@2.0.5/node_modules/@nodelib/fs.stat/out/settings.d.ts","../../../node_modules/.pnpm/@nodelib+fs.stat@2.0.5/node_modules/@nodelib/fs.stat/out/providers/async.d.ts","../../../node_modules/.pnpm/@nodelib+fs.stat@2.0.5/node_modules/@nodelib/fs.stat/out/index.d.ts","../../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/types/index.d.ts","../../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/adapters/fs.d.ts","../../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/settings.d.ts","../../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/providers/async.d.ts","../../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/index.d.ts","../../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/types/index.d.ts","../../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/settings.d.ts","../../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/readers/reader.d.ts","../../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/readers/async.d.ts","../../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/providers/async.d.ts","../../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/index.d.ts","../../../node_modules/.pnpm/fast-glob@3.2.11/node_modules/fast-glob/out/types/index.d.ts","../../../node_modules/.pnpm/fast-glob@3.2.11/node_modules/fast-glob/out/settings.d.ts","../../../node_modules/.pnpm/fast-glob@3.2.11/node_modules/fast-glob/out/managers/tasks.d.ts","../../../node_modules/.pnpm/fast-glob@3.2.11/node_modules/fast-glob/out/index.d.ts","../../../node_modules/.pnpm/globby@13.1.1/node_modules/globby/index.d.ts","../source/package.ts","../source/create.ts","../source/index.ts","../../../node_modules/.pnpm/@types+fs-extra@9.0.13/node_modules/@types/fs-extra/index.d.ts","../../../node_modules/.pnpm/@types+prompts@2.0.14/node_modules/@types/prompts/index.d.ts","../../../node_modules/.pnpm/@types+react@18.0.26/node_modules/@types/react/global.d.ts","../../../node_modules/.pnpm/csstype@3.1.0/node_modules/csstype/index.d.ts","../../../node_modules/.pnpm/@types+prop-types@15.7.5/node_modules/@types/prop-types/index.d.ts","../../../node_modules/.pnpm/@types+scheduler@0.16.2/node_modules/@types/scheduler/tracing.d.ts","../../../node_modules/.pnpm/@types+react@18.0.26/node_modules/@types/react/index.d.ts","../../../node_modules/.pnpm/@types+react-dom@18.0.10/node_modules/@types/react-dom/index.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9","746d62152361558ea6d6115cf0da4dd10ede041d14882ede3568bce5dc4b4f1f","d11a03592451da2d1065e09e61f4e2a9bf68f780f4f6623c18b57816a9679d17","aea179452def8a6152f98f63b191b84e7cbd69b0e248c91e61fb2e52328abe8c",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true},{"version":"f3d4da15233e593eacb3965cde7960f3fddf5878528d882bcedd5cbaba0193c7","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"6c55633c733c8378db65ac3da7a767c3cf2cf3057f0565a9124a16a3a2019e87","affectsGlobalScope":true},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true},{"version":"34c839eaaa6d78c8674ae2c37af2236dee6831b13db7b4ef4df3ec889a04d4f2","affectsGlobalScope":true},{"version":"34478567f8a80171f88f2f30808beb7da15eac0538ae91282dd33dce928d98ed","affectsGlobalScope":true},{"version":"ab7d58e6161a550ff92e5aff755dc37fe896245348332cd5f1e1203479fe0ed1","affectsGlobalScope":true},{"version":"6bda95ea27a59a276e46043b7065b55bd4b316c25e70e29b572958fa77565d43","affectsGlobalScope":true},{"version":"aedb8de1abb2ff1095c153854a6df7deae4a5709c37297f9d6e9948b6806fa66","affectsGlobalScope":true},{"version":"a4da0551fd39b90ca7ce5f68fb55d4dc0c1396d589b612e1902f68ee090aaada","affectsGlobalScope":true},{"version":"11ffe3c281f375fff9ffdde8bbec7669b4dd671905509079f866f2354a788064","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"7e9f54acdee22b52308c4040b668e6f3d83c6795469802a10c7685151f8f137f","e578fd01e69fb19a5b4ad95f193128ef0a142ead8b61d9149cd767762f0cf27d","5fd321c200cd8891db9851493872f01075a3f1032349ed37c458d7f67d8051e2","c8adda9f45d2f7ec9fb28c59859db32da6c2835f1fec96433e2729e5805fa46f","c5590caef278ad8ba2532ec93e29a32ac354dfb333277348acce18512891d3b2","c8adda9f45d2f7ec9fb28c59859db32da6c2835f1fec96433e2729e5805fa46f","f323297c616469bec105acda8d520e24749c46ae4f65c1f20fdcd1c78dd1ec90","3c0d00fac364e52a4dd7afb9ba35cd05d14df95df8e083e047297582f41152ee","e38cda15170b7e69a52f92256f26ccfa79a43961286894f1b68380b11f9292e4","4d35e0a0f6dbe908b8b50ede27f8bf93b57f0a88db0288d079f7a8e8546af38b","c39cc7c51600ffe42f1fa0b1416121c93ea0836b78110956e9ce06830b3c4e92","6ab8ecc3ec84c5452bfcc13b15867975e7beeb6f548e45ddca6e9d1f38e7c615","641507ee0ddc81f0d154484059a1e2c25fa6de51212dffd84ddc291875fb5f72","5faa5a81d34228d0ecb70b59ffca5b04fc5f6ec259f008d4d74098a6f0eeba91","0d5a2ee1fdfa82740e0103389b9efd6bfe145a20018a2da3c02b89666181f4d9","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"2f6c9750131d5d2fdaba85c164a930dc07d2d7e7e8970b89d32864aa6c72620c","affectsGlobalScope":true},"56d13f223ab40f71840795f5bef2552a397a70666ee60878222407f3893fb8d0",{"version":"aeeee3998c5a730f8689f04038d41cf4245c9edbf6ef29a698e45b36e399b8ed","affectsGlobalScope":true},"95843d5cfafced8f3f8a5ce57d2335f0bcd361b9483587d12a25e4bd403b8216","afc6e96061af46bcff47246158caee7e056f5288783f2d83d6858cd25be1c565",{"version":"34f5bcac12b36d70304b73de5f5aab3bb91bd9919f984be80579ebcad03a624e","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","90b94d3d2aa3432cc9dd2d15f56a38b166163fc555404c74243e1af29c5549d8","f50c975ab7b50e25a69e3d8a3773894125b44e9698924105f23b812bf7488baf","c993aac3b6d4a4620ef9651497069eb84806a131420e4f158ea9396fb8eb9b8c","76650408392bf49a8fbf3e2b6b302712a92d76af77b06e2da1cc8077359c4409","0af3121e68297b2247dd331c0d24dba599e50736a7517a5622d5591aae4a3122","6972fca26f6e9bd56197568d4379f99071a90766e06b4fcb5920a0130a9202be",{"version":"4a2628e95962c8ab756121faa3ac2ed348112ff7a87b5c286dd2cc3326546b4c","affectsGlobalScope":true},"80793b2277f31baa199234daed806fff0fb11491d1ebd3357e520c3558063f00","a049a59a02009fc023684fcfaf0ac526fe36c35dcc5d2b7d620c1750ba11b083","e3b886bacdd1fbf1f72e654596c80a55c7bc1d10bdf464aaf52f45ecd243862f","d2f5c67858e65ebb932c2f4bd2af646f5764e8ad7f1e4fbe942a0b5ea05dc0e7","4b9a003b5c556c96784132945bb41c655ea11273b1917f5c8d0c154dd5fd20dd","7f249c599e7a9335dd8e94a4bfe63f00e911756c3c23f77cdb6ef0ec4d479e4a",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"2cabc86ea4f972f2c8386903eccb8c19e2f2370fb9808b66dd8759c1f2ab30c7","abc1c425b2ad6720433f40f1877abfa4223f0f3dd486c9c28c492179ca183cb6","945a841f9a591197154c85386bc5a1467d42d325104bb36db51bc566bbb240be","10c39ce1df102994b47d4bc0c71aa9a6aea76f4651a5ec51914431f50bc883a1",{"version":"8207e7e6db9aa5fc7e61c8f17ba74cf9c115d26f51f91ee93f790815a7ea9dfb","affectsGlobalScope":true},"9f1069b9e2c051737b1f9b4f1baf50e4a63385a6a89c32235549ae87fc3d5492","ee18f2da7a037c6ceeb112a084e485aead9ea166980bf433474559eac1b46553","29c2706fa0cc49a2bd90c83234da33d08bb9554ecec675e91c1f85087f5a5324","0acbf26bf958f9e80c1ffa587b74749d2697b75b484062d36e103c137c562bc3","02b3239cf1b1ff8737e383ed5557f0247499d15f5bd21ab849b1a24687b6100c","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"33eee034727baf564056b4ea719075c23d3b4767d0b5f9c6933b81f3d77774d2","c33a6ea7147af60d8e98f1ac127047f4b0d4e2ce28b8f08ff3de07ca7cc00637",{"version":"127803f77e0dfee84b031b83ea7776875c6c4c89e11a81d00299ff58f163f0e2","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","2408611d9b4146e35d1dbd1f443ccd8e187c74614a54b80300728277529dbf11","998a3de5237518c0b3ac00a11b3b4417affb008aa20aedee52f3fdae3cb86151","ad41008ffe077206e1811fc873f4d9005b5fd7f6ab52bb6118fef600815a5cb4",{"version":"dd9ea469d1bfaf589c6a196275d35cb1aa14014707c2c46d920c7b921e8f5bca","affectsGlobalScope":true},"badae0df9a8016ac36994b0a0e7b82ba6aaa3528e175a8c3cb161e4683eec03e","c3db860bcaaaeb3bbc23f353bbda1f8ab82756c8d5e973bebb3953cb09ea68f2","235a53595bd20b0b0eeb1a29cb2887c67c48375e92f03749b2488fbd46d0b1a0","bc09393cd4cd13f69cf1366d4236fbae5359bb550f0de4e15767e9a91d63dfb1","9c266243b01545e11d2733a55ad02b4c00ecdbda99c561cd1674f96e89cdc958","c71155c05fc76ff948a4759abc1cb9feec036509f500174bc18dad4c7827a60c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"1503a452a67127e5c2da794d1c7c44344d5038373aae16c9b03ac964db159edd","2d17c0dd1d8b821c4e43c9b68ce0619c44f8aabd8fb050b2921048f0e6161b72","6238596893282085d09ecdc71956730aa15be6e7ae3c1a32f772632053b81ff5","3c5c91175c3adb831233bdce0baee95fe1216c615a9ebc29dee1fea87e1ac5ae","a6d054fa6e0a5c5f13e44bc6dac6e8ecd0bb177dd8a7ab1ff1f2bee3a36c6b3e","224a1e47c6157085827eb513f4ec0cc50175d499ba598c726a8214d90113cd8b",{"version":"2b18d229047265aecfdf7c46ac0f8f8b23abb74f737f7da96e2a5db301b2890b","signature":"b1367a2230b500b09abfe9e14a79a1299f04dd06cc61bd30a30ceee5c0f29fdb"},"f1d8b21cdf08726021c8cce0cd6159486236cf1d633eeabbc435b5b2e5869c2e","c58eb580d75b517e64396a9aac843bad347f38481a1e64ca12998e92e12ceb08","88a3183e8e099a405861299a83ac855b99fef3985ed31e73016f61914b3a09ea","8592b3ee11de8e3d3257868571f52dfdcb973ec8af799c23681b41744934e3fd","2f49e129648fd071896ba9e98b59bd70f6ebad232507b95bbe06bce18ca36fa3","f83148c8ce30f74fd32c8e2d1d0ea5b1c2517ce78b6271bffa09fb9c482ee35c",{"version":"69c22514d5c97f808d53777e225ff8f547b161d652b188eac725d5e9fe8ca78b","signature":"b832b653c1a0a27b19ded4fecbfbcd1a3d6ac48d6187d13a9d0d549133496a61"},{"version":"65a4995353efe3a5124c2248297b7ed49657fc9ade4a8743291ba68dfda2ca05","signature":"74684608d68e8bd1862980e2721dc5c404d370ceebd50958e51af4d433c2e792"},{"version":"f8eaa8ce58bae9171182eb1a598c3a9e063f729453234dac7fca8ad84e8e0800","signature":"5b291c006689e8652c3c0784e425fe91c7ac34debe8d71079e7c3a591f2b6390"},"3dfcd0a3bfa70b53135db3cf2e4ddcb7eccc3e4418ce833ae24eecd06928328f","ed05b0475f45612ba60ec24d8d7ce267b1f430cc7d29803b34c59c50682ac39a","e110d49f8da0887aaf35aa39da8381d98c01d08ca59802851c4663be5e1a68d0","4abaa0c56f377b000a6258395bf5ddfaace4632ecc15c1fddb2ed2d630d01c25","2bb86e343b4109c784b11070735fa881af5c870a409a3b87b13800ca2afef421","fc9d4e784c9e7569911d8a6a01e1de90617942639c7c260beffdef1548b1ce06","37c1aeea4ec8df37bbe5d96bda46831acab3f70b2001ec9f51cb3146a101de89","dabffec26f82ad1fd038d0a50229f8039464f33f6662cf2c89d42ae9467a1681","df486e591f21d229d75df323fb9cf34f4b5cdbccee6a9b42227be738a13755d6","dcba47d8aae2966859192252382e76793104c16c615f2445bd3b9e1191082ae0","ae8189514ed306971ac9aa7d917487ee51dc3590aa5735f23c1d71811c373ea6","6de9d8858034d3197c1525e1c29c942cf7912f807d4d7f14dea247b7c05b59b0","1cb6887dfc7f376bc89e97f4cfd546255ed4f0fbe9274394fabd6457606d59d0","1adcc285d2d477ec6c51d0282d891fdf9d04a5fa8dfa479eab153ae17376f1b4","198f902c2fde1b362cb300f6fdbddc41613016352515c513e3b72810c06d0af8","fa42fa946bb5743076ef0b586281e2be5c282f5a102264c8f9a83996ff389cc0","2e19ef4f8860aecc4ca8dded229119910618f6615628da668ee1d730ca71a853","ebdafee23f4e1cec975aade893b7b68714c0e26cf6a3bbf98e7479b366432833","960923ce078ecfef6e5c34468cdba5c552b064c0db7cb0fdd3eafd1bb9d3d7e9","42f034630b3a866d4a88b37cf0f8357b36af2f7298b319d536b7413ba99f979b","defc90cd8bd3948b6584baad669b67528b8bf8374de012524ecc10fb290de00f","ea1b9887cd95358de9134117114674515cae5fd371fd7013a8ba4ccf19e1f570","f6189fb94671fc00350c3852bb9d4a9e3b1880c34cde30b45799d1e122b6e22b","293f78a187f91b0b9713e9aacce90e9fda4a88cea9fe6a8aa190ff45d9b48f28","325994b6f6c7598c73bbd0294bf1e3f1e229772669b3c8a08fe3170442f600b8","42003247f4b72318ce5dbe1929d59bc22717f435343ba49b91b5a021ca67ea31","843563f951d16e850a0be806010f630a4a71f0a55810bb9aced67c6d7774bf2f","9af1c478e5403b39b922df9132d779bc6e1ef88cafec17fcecf26356d90ecbd6","a95a6135f2d195c93d930ba01049c33579328e55612477c0ae5652429d3974ad","24ead5861f4400218aeaafa477082022f244e3df46d18831411f3a47fc3ff515","65ce9342063fcf793e7baea7526a5a9a2f6ce05dea0cf4ae726d02eae2b98fa3","927f1e5782f00bae2cf8bcb0d7fae24e161e56f6469c5b5c83844be0d38eadc0","5a1755f317ac2c0d708fbf7c1dbf076ba3a31f624c534b44275c9c43033fdc2e","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649",{"version":"5fd6c7fb4a9daed2c2f735fa665e7c155ea211b3bd1d2d6fb1008e21e6166557","signature":"5feaea855d81cc27c26e544cf5f9f8de5520751e94481ee065ce4c4f6d482c93"},{"version":"1425d72ab0e3190def0068b0d588672f85143717fce4a19e099bce4b5cb788c7","signature":"a0fb1ca421ef9e52a14869f0070dfc14f61b82b0f364d2303281cb312d4f72e4"},"46324183533e34fad2461b51174132e8e0e4b3ac1ceb5032e4952992739d1eab","d3fa0530dfb1df408f0abd76486de39def69ca47683d4a3529b2d22fce27c693","d9be977c415df16e4defe4995caeca96e637eeef9d216d0d90cdba6fc617e97e","98e0c2b48d855a844099123e8ec20fe383ecd1c5877f3895b048656befe268d0","ff53802a97b7d11ab3c4395aa052baa14cd12d2b1ed236b520a833fdd2a15003","fce9262f840a74118112caf685b725e1cc86cd2b0927311511113d90d87cc61e","d7a7cac49af2a3bfc208fe68831fbfa569864f74a7f31cc3a607f641e6c583fd","9a80e3322d08274f0e41b77923c91fe67b2c8a5134a5278c2cb60a330441554e","2460af41191009298d931c592fb6d4151beea320f1f25b73605e2211e53e4e88","2f87ea988d84d1c617afdeba9d151435473ab24cd5fc456510c8db26d8bd1581","b7336c1c536e3deaedbda956739c6250ac2d0dd171730c42cb57b10368f38a14","6fb67d664aaab2f1d1ad4613b58548aecb4b4703b9e4c5dba6b865b31bd14722","4414644199b1a047b4234965e07d189781a92b578707c79c3933918d67cd9d85","04a4b38c6a1682059eac00e7d0948d99c46642b57003d61d0fe9ccc9df442887","f12ea658b060da1752c65ae4f1e4c248587f6cd4cb4acabbf79a110b6b02ff75","011b2857871a878d5eae463bedc4b3dd14755dc3a67d5d10f8fbb7823d119294","e175549fe57dbff5cd68c1a5ccf33717584d7db9afb8ec216fd2c0daa3b06931","ea68c312e1eb9b48f7064a8dda348594769ba8f9c8596315827c559734a60205","6ddb5fb4476ca702ecff9e5ff0295cde6ce138d71f817da65e118a2a3c534106","6dfff2e65f10158f5a868e642a2e74d2d1bd76f15291552f389f2b8c829a9a86","d10870b52d5b4f5683007f352ce9cd52555dfe0f36ce45ca1c0ea57c0dbe9bff",{"version":"f93d0c1293d17997a4320ba8e7b39e39e9ae7d9d435039b9deed1550c23f5c22","signature":"faaadd501e12491f830501082ff3fac925a863ad3521e25b1aa5b2612c369a23"},{"version":"a437383a3ee33dd00b9ae0beaca31eb8046d717e73a76c68f478ed14f193324e","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},"ae23745daebdb580f8c730f1c1fd666ea95cd87a859406cd74a6892625e51559","ed19da84b7dbf00952ad0b98ce5c194f1903bcf7c94d8103e8e0d63b271543ae","5f7614d60b32dc66e5d665eafd10d7619eedca3a20f0e876e9ec73141735e364",{"version":"bbdf156fea2fabed31a569445835aeedcc33643d404fcbaa54541f06c109df3f","affectsGlobalScope":true},"ba7617784f6b9aeac5e20c5eea869bbc3ef31b905f59c796b0fd401dae17c111","6a386ff939f180ae8ef064699d8b7b6e62bc2731a62d7fbf5e02589383838dea","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"ef8a481f9f2205fcc287eef2b4e461d2fc16bc8a0e49a844681f2f742d69747e","affectsGlobalScope":true},"e4dd91dd4789a109aab51d8a0569a282369fcda9ba6f2b2297bc61bacfb1a042"],"options":{"allowSyntheticDefaultImports":true,"composite":true,"declaration":true,"declarationMap":true,"emitDeclarationOnly":true,"esModuleInterop":true,"jsx":1,"module":99,"noEmitOnError":false,"noImplicitAny":true,"noImplicitReturns":false,"noImplicitThis":true,"noPropertyAccessFromIndexSignature":false,"noUncheckedIndexedAccess":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./typescript","rootDir":"../source","skipLibCheck":true,"sourceMap":false,"strict":true,"target":99},"fileIdsList":[[60,62,114,177,178],[60,62,114,178,179,180,181],[60,62,114,121,178,180],[60,62,114,177,179],[60,62,87,114,121],[60,62,87,114,121,173],[60,62,114,173,174,175,176],[60,62,114,173,175],[60,62,114,174],[60,62,103,114,121,182,183,184,187],[60,62,114,183,184,186],[60,62,86,114,121,182,183,184,185],[60,62,114,184],[60,62,114,182,183],[60,62,114,121,182],[60,62,114],[60,62,71,114],[60,62,74,114],[60,62,75,80,114],[60,62,76,86,87,94,103,113,114],[60,62,76,77,86,94,114],[60,62,78,114],[60,62,79,80,87,95,114],[60,62,80,103,110,114],[60,62,81,83,86,94,114],[60,62,82,114],[60,62,83,84,114],[60,62,85,86,114],[60,62,86,114],[60,62,86,87,88,103,113,114],[60,62,86,87,88,103,114],[60,62,89,94,103,113,114],[60,62,86,87,89,90,94,103,110,113,114],[60,62,89,91,103,110,113,114],[60,62,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120],[60,62,86,92,114],[60,62,93,113,114],[60,62,83,86,94,103,114],[60,62,95,114],[60,62,96,114],[60,62,74,97,114],[60,62,98,112,114,118],[60,62,99,114],[60,62,100,114],[60,62,86,101,114],[60,62,101,102,114,116],[60,62,86,103,104,105,114],[60,62,103,105,114],[60,62,103,104,114],[60,62,106,114],[60,62,107,114],[60,62,86,108,109,114],[60,62,108,109,114],[60,62,80,94,110,114],[60,62,111,114],[60,62,94,112,114],[60,62,75,89,100,113,114],[60,62,80,114],[60,62,103,114,115],[60,62,114,116],[60,62,114,117],[60,62,75,80,86,88,97,103,113,114,116,118],[60,62,103,114,119],[60,62,114,128],[60,62,103,114,121],[60,62,114,203],[60,62,114,199,200,201,202],[62,114],[60,114],[60,62,114,121,189,190,191],[60,62,114,189,190],[60,62,114,189],[60,62,114,121,188],[60,62,113,114,192],[60,62,114,138,152,154,158,160,161],[60,62,114,138,142,144,145,147,150,152,154,159,161],[60,62,114,146,147,154,160],[60,62,114,160],[60,62,114,137],[60,62,114,137,138,142,144,145,146,147,150,151,152,154,158,159,160,162,163,164,165,166,167,168],[60,62,114,141,142,144,145,153,154,158,160],[60,62,114,147,154],[60,62,114,142,144,145,150,153,158,159,160],[60,62,114,141,142,144,145,147,148,149,153,154,158,159],[60,62,114,141,154,158],[60,62,114,141,142,143,147,150,153,154,158],[60,62,114,141,150],[60,62,114,153,154,160],[60,62,114,137,139,140,142,146,147,150,151,154,161],[60,62,114,138,142,154,158],[60,62,114,158],[60,62,114,155,156,157],[60,62,114,139,152,154,160,162],[60,62,114,146,150,152,154],[60,62,114,146,152],[60,62,114,142,144,145,147,148,152,153,154],[60,62,114,141,145,146,169],[60,62,114,141,142,144,146,147,150,153],[60,62,114,152,159,160],[60,62,114,142,144,145,150,154,159,160],[60,61,62,69,70,114,123,124,125],[60,62,114,122],[59,60,61,62,87,96,114,127,134,135,136,171],[60,62,114,126,127,134,172,194],[60,62,114,126],[60,62,114,195],[60,62,87,96,114,126,127,134,135,136,171,193],[60,62,87,96,113,114,126,128,129,130,131,132,133],[60,62,96,114,134,169,170],[59,60,62,87,114,126],[60,62,96,114,134],[60,62,63,114],[60,62,63,64,65,66,67,68,114],[60,62,64,114],[60,62,63,64,114],[126,128],[134],[59,126]],"referencedMap":[[179,1],[182,2],[181,3],[180,4],[178,5],[174,6],[177,7],[176,8],[175,9],[173,5],[188,10],[187,11],[186,12],[185,13],[184,14],[183,15],[61,16],[197,5],[170,16],[71,17],[72,17],[74,18],[75,19],[76,20],[77,21],[78,22],[79,23],[80,24],[81,25],[82,26],[83,27],[84,27],[85,28],[86,29],[87,30],[88,31],[73,16],[120,16],[89,32],[90,33],[91,34],[121,35],[92,36],[93,37],[94,38],[95,39],[96,40],[97,41],[98,42],[99,43],[100,44],[101,45],[102,46],[103,47],[105,48],[104,49],[106,50],[107,51],[108,52],[109,53],[110,54],[111,55],[112,56],[113,57],[114,58],[115,59],[116,60],[117,61],[118,62],[119,63],[128,16],[131,64],[132,64],[133,64],[130,64],[198,65],[122,65],[201,16],[204,66],[199,16],[203,67],[202,16],[59,16],[70,16],[60,68],[62,69],[200,16],[192,70],[191,71],[190,72],[189,73],[193,74],[129,16],[11,16],[12,16],[14,16],[13,16],[2,16],[15,16],[16,16],[17,16],[18,16],[19,16],[20,16],[21,16],[22,16],[3,16],[4,16],[26,16],[23,16],[24,16],[25,16],[27,16],[28,16],[29,16],[5,16],[30,16],[31,16],[32,16],[33,16],[6,16],[37,16],[34,16],[35,16],[36,16],[38,16],[7,16],[39,16],[44,16],[45,16],[40,16],[41,16],[42,16],[43,16],[8,16],[49,16],[46,16],[47,16],[48,16],[50,16],[9,16],[51,16],[52,16],[53,16],[54,16],[55,16],[1,16],[10,16],[56,16],[162,75],[160,76],[139,16],[148,77],[161,78],[138,79],[169,80],[140,16],[159,81],[143,82],[154,83],[150,84],[142,85],[144,86],[145,86],[149,87],[141,88],[152,89],[155,90],[156,91],[157,91],[158,92],[163,16],[137,16],[164,91],[165,93],[147,94],[151,95],[146,96],[166,97],[167,98],[153,99],[168,100],[57,16],[58,16],[126,101],[125,16],[123,102],[124,16],[172,103],[195,104],[127,105],[196,106],[194,107],[134,108],[171,109],[135,110],[136,111],[63,16],[68,112],[69,113],[67,114],[65,115],[66,115],[64,16]],"exportedModulesMap":[[179,1],[182,2],[181,3],[180,4],[178,5],[174,6],[177,7],[176,8],[175,9],[173,5],[188,10],[187,11],[186,12],[185,13],[184,14],[183,15],[61,16],[197,5],[170,16],[71,17],[72,17],[74,18],[75,19],[76,20],[77,21],[78,22],[79,23],[80,24],[81,25],[82,26],[83,27],[84,27],[85,28],[86,29],[87,30],[88,31],[73,16],[120,16],[89,32],[90,33],[91,34],[121,35],[92,36],[93,37],[94,38],[95,39],[96,40],[97,41],[98,42],[99,43],[100,44],[101,45],[102,46],[103,47],[105,48],[104,49],[106,50],[107,51],[108,52],[109,53],[110,54],[111,55],[112,56],[113,57],[114,58],[115,59],[116,60],[117,61],[118,62],[119,63],[128,16],[131,64],[132,64],[133,64],[130,64],[198,65],[122,65],[201,16],[204,66],[199,16],[203,67],[202,16],[59,16],[70,16],[60,68],[62,69],[200,16],[192,70],[191,71],[190,72],[189,73],[193,74],[129,16],[11,16],[12,16],[14,16],[13,16],[2,16],[15,16],[16,16],[17,16],[18,16],[19,16],[20,16],[21,16],[22,16],[3,16],[4,16],[26,16],[23,16],[24,16],[25,16],[27,16],[28,16],[29,16],[5,16],[30,16],[31,16],[32,16],[33,16],[6,16],[37,16],[34,16],[35,16],[36,16],[38,16],[7,16],[39,16],[44,16],[45,16],[40,16],[41,16],[42,16],[43,16],[8,16],[49,16],[46,16],[47,16],[48,16],[50,16],[9,16],[51,16],[52,16],[53,16],[54,16],[55,16],[1,16],[10,16],[56,16],[162,75],[160,76],[139,16],[148,77],[161,78],[138,79],[169,80],[140,16],[159,81],[143,82],[154,83],[150,84],[142,85],[144,86],[145,86],[149,87],[141,88],[152,89],[155,90],[156,91],[157,91],[158,92],[163,16],[137,16],[164,91],[165,93],[147,94],[151,95],[146,96],[166,97],[167,98],[153,99],[168,100],[57,16],[58,16],[126,101],[125,16],[123,102],[124,16],[196,106],[134,116],[171,117],[135,118],[136,117],[63,16],[68,112],[69,113],[67,114],[65,115],[66,115],[64,16]],"semanticDiagnosticsPerFile":[179,182,181,180,178,174,177,176,175,173,188,187,186,185,184,183,61,197,170,71,72,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,73,120,89,90,91,121,92,93,94,95,96,97,98,99,100,101,102,103,105,104,106,107,108,109,110,111,112,113,114,115,116,117,118,119,128,131,132,133,130,198,122,201,204,199,203,202,59,70,60,62,200,192,191,190,189,193,129,11,12,14,13,2,15,16,17,18,19,20,21,22,3,4,26,23,24,25,27,28,29,5,30,31,32,33,6,37,34,35,36,38,7,39,44,45,40,41,42,43,8,49,46,47,48,50,9,51,52,53,54,55,1,10,56,162,160,139,148,161,138,169,140,159,143,154,150,142,144,145,149,141,152,155,156,157,158,163,137,164,165,147,151,146,166,167,153,168,57,58,126,125,123,124,172,195,127,196,194,134,171,135,136,63,68,69,67,65,66,64],"latestChangedDtsFile":"./typescript/shared/prompts.d.ts"},"version":"4.9.4"}
|
|
1
|
+
{"program":{"fileNames":["../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.esnext.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.pnpm/typescript@4.9.4/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/@quilted/typescript/definitions/assets.d.ts","../../../node_modules/@quilted/typescript/definitions/styles.d.ts","../../../node_modules/.pnpm/arg@5.0.1/node_modules/arg/index.d.ts","../../../node_modules/.pnpm/colorette@2.0.16/node_modules/colorette/index.d.ts","../../../node_modules/.pnpm/@types+common-tags@1.8.1/node_modules/@types/common-tags/index.d.ts","../../../node_modules/.pnpm/colorette@2.0.19/node_modules/colorette/index.d.ts","../../events/build/typescript/abort.d.ts","../../events/build/typescript/types.d.ts","../../events/build/typescript/on.d.ts","../../events/build/typescript/once.d.ts","../../events/build/typescript/listeners.d.ts","../../events/build/typescript/emitter.d.ts","../../events/build/typescript/index.d.ts","../../../node_modules/.pnpm/arg@5.0.2/node_modules/arg/index.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/assert.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/assert/strict.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/globals.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/buffer.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/child_process.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/cluster.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/console.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/constants.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/crypto.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/dgram.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/dns.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/dns/promises.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/domain.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/events.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/fs.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/http.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/http2.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/https.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/inspector.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/module.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/net.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/os.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/path.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/process.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/punycode.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/querystring.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/readline.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/repl.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/stream.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/stream/promises.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/stream/web.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/timers.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/timers/promises.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/tls.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/tty.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/url.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/util.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/v8.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/vm.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/wasi.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/zlib.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/globals.global.d.ts","../../../node_modules/.pnpm/@types+node@16.11.36/node_modules/@types/node/index.d.ts","../../../node_modules/.pnpm/@types+prompts@2.4.1/node_modules/@types/prompts/index.d.ts","../../cli-kit/build/typescript/prompt.d.ts","../../cli-kit/build/typescript/template.d.ts","../../cli-kit/build/typescript/package-manager.d.ts","../../cli-kit/build/typescript/index.d.ts","../source/help.ts","../../../node_modules/.pnpm/@types+prettier@2.6.3/node_modules/@types/prettier/index.d.ts","../../../node_modules/.pnpm/pkg-dir@6.0.1/node_modules/pkg-dir/index.d.ts","../../../node_modules/.pnpm/@types+prettier@2.6.3/node_modules/@types/prettier/standalone.d.ts","../../../node_modules/.pnpm/@types+prettier@2.6.3/node_modules/@types/prettier/parser-babel.d.ts","../../../node_modules/.pnpm/@types+prettier@2.6.3/node_modules/@types/prettier/parser-typescript.d.ts","../../../node_modules/.pnpm/@types+prettier@2.6.3/node_modules/@types/prettier/parser-yaml.d.ts","../source/shared.ts","../source/shared/prompts.ts","../source/shared/tsconfig.ts","../../../node_modules/.pnpm/yaml@2.1.1/node_modules/yaml/dist/parse/line-counter.d.ts","../../../node_modules/.pnpm/yaml@2.1.1/node_modules/yaml/dist/errors.d.ts","../../../node_modules/.pnpm/yaml@2.1.1/node_modules/yaml/dist/doc/applyReviver.d.ts","../../../node_modules/.pnpm/yaml@2.1.1/node_modules/yaml/dist/log.d.ts","../../../node_modules/.pnpm/yaml@2.1.1/node_modules/yaml/dist/nodes/toJS.d.ts","../../../node_modules/.pnpm/yaml@2.1.1/node_modules/yaml/dist/nodes/Scalar.d.ts","../../../node_modules/.pnpm/yaml@2.1.1/node_modules/yaml/dist/nodes/Collection.d.ts","../../../node_modules/.pnpm/yaml@2.1.1/node_modules/yaml/dist/nodes/YAMLMap.d.ts","../../../node_modules/.pnpm/yaml@2.1.1/node_modules/yaml/dist/nodes/YAMLSeq.d.ts","../../../node_modules/.pnpm/yaml@2.1.1/node_modules/yaml/dist/schema/types.d.ts","../../../node_modules/.pnpm/yaml@2.1.1/node_modules/yaml/dist/schema/Schema.d.ts","../../../node_modules/.pnpm/yaml@2.1.1/node_modules/yaml/dist/doc/createNode.d.ts","../../../node_modules/.pnpm/yaml@2.1.1/node_modules/yaml/dist/nodes/addPairToJSMap.d.ts","../../../node_modules/.pnpm/yaml@2.1.1/node_modules/yaml/dist/nodes/Pair.d.ts","../../../node_modules/.pnpm/yaml@2.1.1/node_modules/yaml/dist/schema/tags.d.ts","../../../node_modules/.pnpm/yaml@2.1.1/node_modules/yaml/dist/options.d.ts","../../../node_modules/.pnpm/yaml@2.1.1/node_modules/yaml/dist/stringify/stringify.d.ts","../../../node_modules/.pnpm/yaml@2.1.1/node_modules/yaml/dist/nodes/Node.d.ts","../../../node_modules/.pnpm/yaml@2.1.1/node_modules/yaml/dist/parse/cst-scalar.d.ts","../../../node_modules/.pnpm/yaml@2.1.1/node_modules/yaml/dist/parse/cst-stringify.d.ts","../../../node_modules/.pnpm/yaml@2.1.1/node_modules/yaml/dist/parse/cst-visit.d.ts","../../../node_modules/.pnpm/yaml@2.1.1/node_modules/yaml/dist/parse/cst.d.ts","../../../node_modules/.pnpm/yaml@2.1.1/node_modules/yaml/dist/nodes/Alias.d.ts","../../../node_modules/.pnpm/yaml@2.1.1/node_modules/yaml/dist/doc/Document.d.ts","../../../node_modules/.pnpm/yaml@2.1.1/node_modules/yaml/dist/doc/directives.d.ts","../../../node_modules/.pnpm/yaml@2.1.1/node_modules/yaml/dist/compose/composer.d.ts","../../../node_modules/.pnpm/yaml@2.1.1/node_modules/yaml/dist/parse/lexer.d.ts","../../../node_modules/.pnpm/yaml@2.1.1/node_modules/yaml/dist/parse/parser.d.ts","../../../node_modules/.pnpm/yaml@2.1.1/node_modules/yaml/dist/public-api.d.ts","../../../node_modules/.pnpm/yaml@2.1.1/node_modules/yaml/dist/schema/yaml-1.1/omap.d.ts","../../../node_modules/.pnpm/yaml@2.1.1/node_modules/yaml/dist/schema/yaml-1.1/set.d.ts","../../../node_modules/.pnpm/yaml@2.1.1/node_modules/yaml/dist/visit.d.ts","../../../node_modules/.pnpm/yaml@2.1.1/node_modules/yaml/dist/index.d.ts","../../../node_modules/.pnpm/@types+minimatch@3.0.5/node_modules/@types/minimatch/index.d.ts","../source/shared/package-manager.ts","../source/app.ts","../../../node_modules/.pnpm/@nodelib+fs.stat@2.0.5/node_modules/@nodelib/fs.stat/out/types/index.d.ts","../../../node_modules/.pnpm/@nodelib+fs.stat@2.0.5/node_modules/@nodelib/fs.stat/out/adapters/fs.d.ts","../../../node_modules/.pnpm/@nodelib+fs.stat@2.0.5/node_modules/@nodelib/fs.stat/out/settings.d.ts","../../../node_modules/.pnpm/@nodelib+fs.stat@2.0.5/node_modules/@nodelib/fs.stat/out/providers/async.d.ts","../../../node_modules/.pnpm/@nodelib+fs.stat@2.0.5/node_modules/@nodelib/fs.stat/out/index.d.ts","../../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/types/index.d.ts","../../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/adapters/fs.d.ts","../../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/settings.d.ts","../../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/providers/async.d.ts","../../../node_modules/.pnpm/@nodelib+fs.scandir@2.1.5/node_modules/@nodelib/fs.scandir/out/index.d.ts","../../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/types/index.d.ts","../../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/settings.d.ts","../../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/readers/reader.d.ts","../../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/readers/async.d.ts","../../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/providers/async.d.ts","../../../node_modules/.pnpm/@nodelib+fs.walk@1.2.8/node_modules/@nodelib/fs.walk/out/index.d.ts","../../../node_modules/.pnpm/fast-glob@3.2.11/node_modules/fast-glob/out/types/index.d.ts","../../../node_modules/.pnpm/fast-glob@3.2.11/node_modules/fast-glob/out/settings.d.ts","../../../node_modules/.pnpm/fast-glob@3.2.11/node_modules/fast-glob/out/managers/tasks.d.ts","../../../node_modules/.pnpm/fast-glob@3.2.11/node_modules/fast-glob/out/index.d.ts","../../../node_modules/.pnpm/globby@13.1.1/node_modules/globby/index.d.ts","../source/package.ts","../source/create.ts","../source/index.ts","../../../node_modules/.pnpm/@types+fs-extra@9.0.13/node_modules/@types/fs-extra/index.d.ts","../../../node_modules/.pnpm/@types+prompts@2.0.14/node_modules/@types/prompts/index.d.ts","../../../node_modules/.pnpm/@types+react@18.0.26/node_modules/@types/react/global.d.ts","../../../node_modules/.pnpm/csstype@3.1.0/node_modules/csstype/index.d.ts","../../../node_modules/.pnpm/@types+prop-types@15.7.5/node_modules/@types/prop-types/index.d.ts","../../../node_modules/.pnpm/@types+scheduler@0.16.2/node_modules/@types/scheduler/tracing.d.ts","../../../node_modules/.pnpm/@types+react@18.0.26/node_modules/@types/react/index.d.ts","../../../node_modules/.pnpm/@types+react-dom@18.0.10/node_modules/@types/react-dom/index.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9","746d62152361558ea6d6115cf0da4dd10ede041d14882ede3568bce5dc4b4f1f","d11a03592451da2d1065e09e61f4e2a9bf68f780f4f6623c18b57816a9679d17","aea179452def8a6152f98f63b191b84e7cbd69b0e248c91e61fb2e52328abe8c",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true},{"version":"f3d4da15233e593eacb3965cde7960f3fddf5878528d882bcedd5cbaba0193c7","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"6c55633c733c8378db65ac3da7a767c3cf2cf3057f0565a9124a16a3a2019e87","affectsGlobalScope":true},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true},{"version":"34c839eaaa6d78c8674ae2c37af2236dee6831b13db7b4ef4df3ec889a04d4f2","affectsGlobalScope":true},{"version":"34478567f8a80171f88f2f30808beb7da15eac0538ae91282dd33dce928d98ed","affectsGlobalScope":true},{"version":"ab7d58e6161a550ff92e5aff755dc37fe896245348332cd5f1e1203479fe0ed1","affectsGlobalScope":true},{"version":"6bda95ea27a59a276e46043b7065b55bd4b316c25e70e29b572958fa77565d43","affectsGlobalScope":true},{"version":"aedb8de1abb2ff1095c153854a6df7deae4a5709c37297f9d6e9948b6806fa66","affectsGlobalScope":true},{"version":"a4da0551fd39b90ca7ce5f68fb55d4dc0c1396d589b612e1902f68ee090aaada","affectsGlobalScope":true},{"version":"11ffe3c281f375fff9ffdde8bbec7669b4dd671905509079f866f2354a788064","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"7e9f54acdee22b52308c4040b668e6f3d83c6795469802a10c7685151f8f137f","e578fd01e69fb19a5b4ad95f193128ef0a142ead8b61d9149cd767762f0cf27d","5fd321c200cd8891db9851493872f01075a3f1032349ed37c458d7f67d8051e2","c8adda9f45d2f7ec9fb28c59859db32da6c2835f1fec96433e2729e5805fa46f","c5590caef278ad8ba2532ec93e29a32ac354dfb333277348acce18512891d3b2","c8adda9f45d2f7ec9fb28c59859db32da6c2835f1fec96433e2729e5805fa46f","f323297c616469bec105acda8d520e24749c46ae4f65c1f20fdcd1c78dd1ec90","3c0d00fac364e52a4dd7afb9ba35cd05d14df95df8e083e047297582f41152ee","e38cda15170b7e69a52f92256f26ccfa79a43961286894f1b68380b11f9292e4","4d35e0a0f6dbe908b8b50ede27f8bf93b57f0a88db0288d079f7a8e8546af38b","c39cc7c51600ffe42f1fa0b1416121c93ea0836b78110956e9ce06830b3c4e92","6ab8ecc3ec84c5452bfcc13b15867975e7beeb6f548e45ddca6e9d1f38e7c615","641507ee0ddc81f0d154484059a1e2c25fa6de51212dffd84ddc291875fb5f72","5faa5a81d34228d0ecb70b59ffca5b04fc5f6ec259f008d4d74098a6f0eeba91","0d5a2ee1fdfa82740e0103389b9efd6bfe145a20018a2da3c02b89666181f4d9","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"2f6c9750131d5d2fdaba85c164a930dc07d2d7e7e8970b89d32864aa6c72620c","affectsGlobalScope":true},"56d13f223ab40f71840795f5bef2552a397a70666ee60878222407f3893fb8d0",{"version":"aeeee3998c5a730f8689f04038d41cf4245c9edbf6ef29a698e45b36e399b8ed","affectsGlobalScope":true},"95843d5cfafced8f3f8a5ce57d2335f0bcd361b9483587d12a25e4bd403b8216","afc6e96061af46bcff47246158caee7e056f5288783f2d83d6858cd25be1c565",{"version":"34f5bcac12b36d70304b73de5f5aab3bb91bd9919f984be80579ebcad03a624e","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","90b94d3d2aa3432cc9dd2d15f56a38b166163fc555404c74243e1af29c5549d8","f50c975ab7b50e25a69e3d8a3773894125b44e9698924105f23b812bf7488baf","c993aac3b6d4a4620ef9651497069eb84806a131420e4f158ea9396fb8eb9b8c","76650408392bf49a8fbf3e2b6b302712a92d76af77b06e2da1cc8077359c4409","0af3121e68297b2247dd331c0d24dba599e50736a7517a5622d5591aae4a3122","6972fca26f6e9bd56197568d4379f99071a90766e06b4fcb5920a0130a9202be",{"version":"4a2628e95962c8ab756121faa3ac2ed348112ff7a87b5c286dd2cc3326546b4c","affectsGlobalScope":true},"80793b2277f31baa199234daed806fff0fb11491d1ebd3357e520c3558063f00","a049a59a02009fc023684fcfaf0ac526fe36c35dcc5d2b7d620c1750ba11b083","e3b886bacdd1fbf1f72e654596c80a55c7bc1d10bdf464aaf52f45ecd243862f","d2f5c67858e65ebb932c2f4bd2af646f5764e8ad7f1e4fbe942a0b5ea05dc0e7","4b9a003b5c556c96784132945bb41c655ea11273b1917f5c8d0c154dd5fd20dd","7f249c599e7a9335dd8e94a4bfe63f00e911756c3c23f77cdb6ef0ec4d479e4a",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"2cabc86ea4f972f2c8386903eccb8c19e2f2370fb9808b66dd8759c1f2ab30c7","abc1c425b2ad6720433f40f1877abfa4223f0f3dd486c9c28c492179ca183cb6","945a841f9a591197154c85386bc5a1467d42d325104bb36db51bc566bbb240be","10c39ce1df102994b47d4bc0c71aa9a6aea76f4651a5ec51914431f50bc883a1",{"version":"8207e7e6db9aa5fc7e61c8f17ba74cf9c115d26f51f91ee93f790815a7ea9dfb","affectsGlobalScope":true},"9f1069b9e2c051737b1f9b4f1baf50e4a63385a6a89c32235549ae87fc3d5492","ee18f2da7a037c6ceeb112a084e485aead9ea166980bf433474559eac1b46553","29c2706fa0cc49a2bd90c83234da33d08bb9554ecec675e91c1f85087f5a5324","0acbf26bf958f9e80c1ffa587b74749d2697b75b484062d36e103c137c562bc3","02b3239cf1b1ff8737e383ed5557f0247499d15f5bd21ab849b1a24687b6100c","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"33eee034727baf564056b4ea719075c23d3b4767d0b5f9c6933b81f3d77774d2","c33a6ea7147af60d8e98f1ac127047f4b0d4e2ce28b8f08ff3de07ca7cc00637",{"version":"127803f77e0dfee84b031b83ea7776875c6c4c89e11a81d00299ff58f163f0e2","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","2408611d9b4146e35d1dbd1f443ccd8e187c74614a54b80300728277529dbf11","998a3de5237518c0b3ac00a11b3b4417affb008aa20aedee52f3fdae3cb86151","ad41008ffe077206e1811fc873f4d9005b5fd7f6ab52bb6118fef600815a5cb4",{"version":"dd9ea469d1bfaf589c6a196275d35cb1aa14014707c2c46d920c7b921e8f5bca","affectsGlobalScope":true},"badae0df9a8016ac36994b0a0e7b82ba6aaa3528e175a8c3cb161e4683eec03e","c3db860bcaaaeb3bbc23f353bbda1f8ab82756c8d5e973bebb3953cb09ea68f2","235a53595bd20b0b0eeb1a29cb2887c67c48375e92f03749b2488fbd46d0b1a0","bc09393cd4cd13f69cf1366d4236fbae5359bb550f0de4e15767e9a91d63dfb1","9c266243b01545e11d2733a55ad02b4c00ecdbda99c561cd1674f96e89cdc958","c71155c05fc76ff948a4759abc1cb9feec036509f500174bc18dad4c7827a60c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"1503a452a67127e5c2da794d1c7c44344d5038373aae16c9b03ac964db159edd","2d17c0dd1d8b821c4e43c9b68ce0619c44f8aabd8fb050b2921048f0e6161b72","6238596893282085d09ecdc71956730aa15be6e7ae3c1a32f772632053b81ff5","3c5c91175c3adb831233bdce0baee95fe1216c615a9ebc29dee1fea87e1ac5ae","a6d054fa6e0a5c5f13e44bc6dac6e8ecd0bb177dd8a7ab1ff1f2bee3a36c6b3e","224a1e47c6157085827eb513f4ec0cc50175d499ba598c726a8214d90113cd8b",{"version":"2b18d229047265aecfdf7c46ac0f8f8b23abb74f737f7da96e2a5db301b2890b","signature":"b1367a2230b500b09abfe9e14a79a1299f04dd06cc61bd30a30ceee5c0f29fdb"},"f1d8b21cdf08726021c8cce0cd6159486236cf1d633eeabbc435b5b2e5869c2e","c58eb580d75b517e64396a9aac843bad347f38481a1e64ca12998e92e12ceb08","88a3183e8e099a405861299a83ac855b99fef3985ed31e73016f61914b3a09ea","8592b3ee11de8e3d3257868571f52dfdcb973ec8af799c23681b41744934e3fd","2f49e129648fd071896ba9e98b59bd70f6ebad232507b95bbe06bce18ca36fa3","f83148c8ce30f74fd32c8e2d1d0ea5b1c2517ce78b6271bffa09fb9c482ee35c",{"version":"69c22514d5c97f808d53777e225ff8f547b161d652b188eac725d5e9fe8ca78b","signature":"b832b653c1a0a27b19ded4fecbfbcd1a3d6ac48d6187d13a9d0d549133496a61"},{"version":"65a4995353efe3a5124c2248297b7ed49657fc9ade4a8743291ba68dfda2ca05","signature":"74684608d68e8bd1862980e2721dc5c404d370ceebd50958e51af4d433c2e792"},{"version":"f8eaa8ce58bae9171182eb1a598c3a9e063f729453234dac7fca8ad84e8e0800","signature":"5b291c006689e8652c3c0784e425fe91c7ac34debe8d71079e7c3a591f2b6390"},"3dfcd0a3bfa70b53135db3cf2e4ddcb7eccc3e4418ce833ae24eecd06928328f","ed05b0475f45612ba60ec24d8d7ce267b1f430cc7d29803b34c59c50682ac39a","e110d49f8da0887aaf35aa39da8381d98c01d08ca59802851c4663be5e1a68d0","4abaa0c56f377b000a6258395bf5ddfaace4632ecc15c1fddb2ed2d630d01c25","2bb86e343b4109c784b11070735fa881af5c870a409a3b87b13800ca2afef421","fc9d4e784c9e7569911d8a6a01e1de90617942639c7c260beffdef1548b1ce06","37c1aeea4ec8df37bbe5d96bda46831acab3f70b2001ec9f51cb3146a101de89","dabffec26f82ad1fd038d0a50229f8039464f33f6662cf2c89d42ae9467a1681","df486e591f21d229d75df323fb9cf34f4b5cdbccee6a9b42227be738a13755d6","dcba47d8aae2966859192252382e76793104c16c615f2445bd3b9e1191082ae0","ae8189514ed306971ac9aa7d917487ee51dc3590aa5735f23c1d71811c373ea6","6de9d8858034d3197c1525e1c29c942cf7912f807d4d7f14dea247b7c05b59b0","1cb6887dfc7f376bc89e97f4cfd546255ed4f0fbe9274394fabd6457606d59d0","1adcc285d2d477ec6c51d0282d891fdf9d04a5fa8dfa479eab153ae17376f1b4","198f902c2fde1b362cb300f6fdbddc41613016352515c513e3b72810c06d0af8","fa42fa946bb5743076ef0b586281e2be5c282f5a102264c8f9a83996ff389cc0","2e19ef4f8860aecc4ca8dded229119910618f6615628da668ee1d730ca71a853","ebdafee23f4e1cec975aade893b7b68714c0e26cf6a3bbf98e7479b366432833","960923ce078ecfef6e5c34468cdba5c552b064c0db7cb0fdd3eafd1bb9d3d7e9","42f034630b3a866d4a88b37cf0f8357b36af2f7298b319d536b7413ba99f979b","defc90cd8bd3948b6584baad669b67528b8bf8374de012524ecc10fb290de00f","ea1b9887cd95358de9134117114674515cae5fd371fd7013a8ba4ccf19e1f570","f6189fb94671fc00350c3852bb9d4a9e3b1880c34cde30b45799d1e122b6e22b","293f78a187f91b0b9713e9aacce90e9fda4a88cea9fe6a8aa190ff45d9b48f28","325994b6f6c7598c73bbd0294bf1e3f1e229772669b3c8a08fe3170442f600b8","42003247f4b72318ce5dbe1929d59bc22717f435343ba49b91b5a021ca67ea31","843563f951d16e850a0be806010f630a4a71f0a55810bb9aced67c6d7774bf2f","9af1c478e5403b39b922df9132d779bc6e1ef88cafec17fcecf26356d90ecbd6","a95a6135f2d195c93d930ba01049c33579328e55612477c0ae5652429d3974ad","24ead5861f4400218aeaafa477082022f244e3df46d18831411f3a47fc3ff515","65ce9342063fcf793e7baea7526a5a9a2f6ce05dea0cf4ae726d02eae2b98fa3","927f1e5782f00bae2cf8bcb0d7fae24e161e56f6469c5b5c83844be0d38eadc0","5a1755f317ac2c0d708fbf7c1dbf076ba3a31f624c534b44275c9c43033fdc2e","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649",{"version":"5fd6c7fb4a9daed2c2f735fa665e7c155ea211b3bd1d2d6fb1008e21e6166557","signature":"5feaea855d81cc27c26e544cf5f9f8de5520751e94481ee065ce4c4f6d482c93"},{"version":"849d887e5460721e78b87eac0414cd55cb2081a690bf32a4c696485961725caf","signature":"a0fb1ca421ef9e52a14869f0070dfc14f61b82b0f364d2303281cb312d4f72e4"},"46324183533e34fad2461b51174132e8e0e4b3ac1ceb5032e4952992739d1eab","d3fa0530dfb1df408f0abd76486de39def69ca47683d4a3529b2d22fce27c693","d9be977c415df16e4defe4995caeca96e637eeef9d216d0d90cdba6fc617e97e","98e0c2b48d855a844099123e8ec20fe383ecd1c5877f3895b048656befe268d0","ff53802a97b7d11ab3c4395aa052baa14cd12d2b1ed236b520a833fdd2a15003","fce9262f840a74118112caf685b725e1cc86cd2b0927311511113d90d87cc61e","d7a7cac49af2a3bfc208fe68831fbfa569864f74a7f31cc3a607f641e6c583fd","9a80e3322d08274f0e41b77923c91fe67b2c8a5134a5278c2cb60a330441554e","2460af41191009298d931c592fb6d4151beea320f1f25b73605e2211e53e4e88","2f87ea988d84d1c617afdeba9d151435473ab24cd5fc456510c8db26d8bd1581","b7336c1c536e3deaedbda956739c6250ac2d0dd171730c42cb57b10368f38a14","6fb67d664aaab2f1d1ad4613b58548aecb4b4703b9e4c5dba6b865b31bd14722","4414644199b1a047b4234965e07d189781a92b578707c79c3933918d67cd9d85","04a4b38c6a1682059eac00e7d0948d99c46642b57003d61d0fe9ccc9df442887","f12ea658b060da1752c65ae4f1e4c248587f6cd4cb4acabbf79a110b6b02ff75","011b2857871a878d5eae463bedc4b3dd14755dc3a67d5d10f8fbb7823d119294","e175549fe57dbff5cd68c1a5ccf33717584d7db9afb8ec216fd2c0daa3b06931","ea68c312e1eb9b48f7064a8dda348594769ba8f9c8596315827c559734a60205","6ddb5fb4476ca702ecff9e5ff0295cde6ce138d71f817da65e118a2a3c534106","6dfff2e65f10158f5a868e642a2e74d2d1bd76f15291552f389f2b8c829a9a86","d10870b52d5b4f5683007f352ce9cd52555dfe0f36ce45ca1c0ea57c0dbe9bff",{"version":"f93d0c1293d17997a4320ba8e7b39e39e9ae7d9d435039b9deed1550c23f5c22","signature":"faaadd501e12491f830501082ff3fac925a863ad3521e25b1aa5b2612c369a23"},{"version":"a437383a3ee33dd00b9ae0beaca31eb8046d717e73a76c68f478ed14f193324e","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},"ae23745daebdb580f8c730f1c1fd666ea95cd87a859406cd74a6892625e51559","ed19da84b7dbf00952ad0b98ce5c194f1903bcf7c94d8103e8e0d63b271543ae","5f7614d60b32dc66e5d665eafd10d7619eedca3a20f0e876e9ec73141735e364",{"version":"bbdf156fea2fabed31a569445835aeedcc33643d404fcbaa54541f06c109df3f","affectsGlobalScope":true},"ba7617784f6b9aeac5e20c5eea869bbc3ef31b905f59c796b0fd401dae17c111","6a386ff939f180ae8ef064699d8b7b6e62bc2731a62d7fbf5e02589383838dea","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"ef8a481f9f2205fcc287eef2b4e461d2fc16bc8a0e49a844681f2f742d69747e","affectsGlobalScope":true},"e4dd91dd4789a109aab51d8a0569a282369fcda9ba6f2b2297bc61bacfb1a042"],"options":{"allowSyntheticDefaultImports":true,"composite":true,"declaration":true,"declarationMap":true,"emitDeclarationOnly":true,"esModuleInterop":true,"jsx":1,"module":99,"noEmitOnError":false,"noImplicitAny":true,"noImplicitReturns":false,"noImplicitThis":true,"noPropertyAccessFromIndexSignature":false,"noUncheckedIndexedAccess":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./typescript","rootDir":"../source","skipLibCheck":true,"sourceMap":false,"strict":true,"target":99},"fileIdsList":[[60,62,114,177,178],[60,62,114,178,179,180,181],[60,62,114,121,178,180],[60,62,114,177,179],[60,62,87,114,121],[60,62,87,114,121,173],[60,62,114,173,174,175,176],[60,62,114,173,175],[60,62,114,174],[60,62,103,114,121,182,183,184,187],[60,62,114,183,184,186],[60,62,86,114,121,182,183,184,185],[60,62,114,184],[60,62,114,182,183],[60,62,114,121,182],[60,62,114],[60,62,71,114],[60,62,74,114],[60,62,75,80,114],[60,62,76,86,87,94,103,113,114],[60,62,76,77,86,94,114],[60,62,78,114],[60,62,79,80,87,95,114],[60,62,80,103,110,114],[60,62,81,83,86,94,114],[60,62,82,114],[60,62,83,84,114],[60,62,85,86,114],[60,62,86,114],[60,62,86,87,88,103,113,114],[60,62,86,87,88,103,114],[60,62,89,94,103,113,114],[60,62,86,87,89,90,94,103,110,113,114],[60,62,89,91,103,110,113,114],[60,62,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120],[60,62,86,92,114],[60,62,93,113,114],[60,62,83,86,94,103,114],[60,62,95,114],[60,62,96,114],[60,62,74,97,114],[60,62,98,112,114,118],[60,62,99,114],[60,62,100,114],[60,62,86,101,114],[60,62,101,102,114,116],[60,62,86,103,104,105,114],[60,62,103,105,114],[60,62,103,104,114],[60,62,106,114],[60,62,107,114],[60,62,86,108,109,114],[60,62,108,109,114],[60,62,80,94,110,114],[60,62,111,114],[60,62,94,112,114],[60,62,75,89,100,113,114],[60,62,80,114],[60,62,103,114,115],[60,62,114,116],[60,62,114,117],[60,62,75,80,86,88,97,103,113,114,116,118],[60,62,103,114,119],[60,62,114,128],[60,62,103,114,121],[60,62,114,203],[60,62,114,199,200,201,202],[62,114],[60,114],[60,62,114,121,189,190,191],[60,62,114,189,190],[60,62,114,189],[60,62,114,121,188],[60,62,113,114,192],[60,62,114,138,152,154,158,160,161],[60,62,114,138,142,144,145,147,150,152,154,159,161],[60,62,114,146,147,154,160],[60,62,114,160],[60,62,114,137],[60,62,114,137,138,142,144,145,146,147,150,151,152,154,158,159,160,162,163,164,165,166,167,168],[60,62,114,141,142,144,145,153,154,158,160],[60,62,114,147,154],[60,62,114,142,144,145,150,153,158,159,160],[60,62,114,141,142,144,145,147,148,149,153,154,158,159],[60,62,114,141,154,158],[60,62,114,141,142,143,147,150,153,154,158],[60,62,114,141,150],[60,62,114,153,154,160],[60,62,114,137,139,140,142,146,147,150,151,154,161],[60,62,114,138,142,154,158],[60,62,114,158],[60,62,114,155,156,157],[60,62,114,139,152,154,160,162],[60,62,114,146,150,152,154],[60,62,114,146,152],[60,62,114,142,144,145,147,148,152,153,154],[60,62,114,141,145,146,169],[60,62,114,141,142,144,146,147,150,153],[60,62,114,152,159,160],[60,62,114,142,144,145,150,154,159,160],[60,61,62,69,70,114,123,124,125],[60,62,114,122],[59,60,61,62,87,96,114,127,134,135,136,171],[60,62,114,126,127,134,172,194],[60,62,114,126],[60,62,114,195],[60,62,87,96,114,126,127,134,135,136,171,193],[60,62,87,96,113,114,126,128,129,130,131,132,133],[60,62,96,114,134,169,170],[59,60,62,87,114,126],[60,62,96,114,134],[60,62,63,114],[60,62,63,64,65,66,67,68,114],[60,62,64,114],[60,62,63,64,114],[126,128],[134],[59,126]],"referencedMap":[[179,1],[182,2],[181,3],[180,4],[178,5],[174,6],[177,7],[176,8],[175,9],[173,5],[188,10],[187,11],[186,12],[185,13],[184,14],[183,15],[61,16],[197,5],[170,16],[71,17],[72,17],[74,18],[75,19],[76,20],[77,21],[78,22],[79,23],[80,24],[81,25],[82,26],[83,27],[84,27],[85,28],[86,29],[87,30],[88,31],[73,16],[120,16],[89,32],[90,33],[91,34],[121,35],[92,36],[93,37],[94,38],[95,39],[96,40],[97,41],[98,42],[99,43],[100,44],[101,45],[102,46],[103,47],[105,48],[104,49],[106,50],[107,51],[108,52],[109,53],[110,54],[111,55],[112,56],[113,57],[114,58],[115,59],[116,60],[117,61],[118,62],[119,63],[128,16],[131,64],[132,64],[133,64],[130,64],[198,65],[122,65],[201,16],[204,66],[199,16],[203,67],[202,16],[59,16],[70,16],[60,68],[62,69],[200,16],[192,70],[191,71],[190,72],[189,73],[193,74],[129,16],[11,16],[12,16],[14,16],[13,16],[2,16],[15,16],[16,16],[17,16],[18,16],[19,16],[20,16],[21,16],[22,16],[3,16],[4,16],[26,16],[23,16],[24,16],[25,16],[27,16],[28,16],[29,16],[5,16],[30,16],[31,16],[32,16],[33,16],[6,16],[37,16],[34,16],[35,16],[36,16],[38,16],[7,16],[39,16],[44,16],[45,16],[40,16],[41,16],[42,16],[43,16],[8,16],[49,16],[46,16],[47,16],[48,16],[50,16],[9,16],[51,16],[52,16],[53,16],[54,16],[55,16],[1,16],[10,16],[56,16],[162,75],[160,76],[139,16],[148,77],[161,78],[138,79],[169,80],[140,16],[159,81],[143,82],[154,83],[150,84],[142,85],[144,86],[145,86],[149,87],[141,88],[152,89],[155,90],[156,91],[157,91],[158,92],[163,16],[137,16],[164,91],[165,93],[147,94],[151,95],[146,96],[166,97],[167,98],[153,99],[168,100],[57,16],[58,16],[126,101],[125,16],[123,102],[124,16],[172,103],[195,104],[127,105],[196,106],[194,107],[134,108],[171,109],[135,110],[136,111],[63,16],[68,112],[69,113],[67,114],[65,115],[66,115],[64,16]],"exportedModulesMap":[[179,1],[182,2],[181,3],[180,4],[178,5],[174,6],[177,7],[176,8],[175,9],[173,5],[188,10],[187,11],[186,12],[185,13],[184,14],[183,15],[61,16],[197,5],[170,16],[71,17],[72,17],[74,18],[75,19],[76,20],[77,21],[78,22],[79,23],[80,24],[81,25],[82,26],[83,27],[84,27],[85,28],[86,29],[87,30],[88,31],[73,16],[120,16],[89,32],[90,33],[91,34],[121,35],[92,36],[93,37],[94,38],[95,39],[96,40],[97,41],[98,42],[99,43],[100,44],[101,45],[102,46],[103,47],[105,48],[104,49],[106,50],[107,51],[108,52],[109,53],[110,54],[111,55],[112,56],[113,57],[114,58],[115,59],[116,60],[117,61],[118,62],[119,63],[128,16],[131,64],[132,64],[133,64],[130,64],[198,65],[122,65],[201,16],[204,66],[199,16],[203,67],[202,16],[59,16],[70,16],[60,68],[62,69],[200,16],[192,70],[191,71],[190,72],[189,73],[193,74],[129,16],[11,16],[12,16],[14,16],[13,16],[2,16],[15,16],[16,16],[17,16],[18,16],[19,16],[20,16],[21,16],[22,16],[3,16],[4,16],[26,16],[23,16],[24,16],[25,16],[27,16],[28,16],[29,16],[5,16],[30,16],[31,16],[32,16],[33,16],[6,16],[37,16],[34,16],[35,16],[36,16],[38,16],[7,16],[39,16],[44,16],[45,16],[40,16],[41,16],[42,16],[43,16],[8,16],[49,16],[46,16],[47,16],[48,16],[50,16],[9,16],[51,16],[52,16],[53,16],[54,16],[55,16],[1,16],[10,16],[56,16],[162,75],[160,76],[139,16],[148,77],[161,78],[138,79],[169,80],[140,16],[159,81],[143,82],[154,83],[150,84],[142,85],[144,86],[145,86],[149,87],[141,88],[152,89],[155,90],[156,91],[157,91],[158,92],[163,16],[137,16],[164,91],[165,93],[147,94],[151,95],[146,96],[166,97],[167,98],[153,99],[168,100],[57,16],[58,16],[126,101],[125,16],[123,102],[124,16],[196,106],[134,116],[171,117],[135,118],[136,117],[63,16],[68,112],[69,113],[67,114],[65,115],[66,115],[64,16]],"semanticDiagnosticsPerFile":[179,182,181,180,178,174,177,176,175,173,188,187,186,185,184,183,61,197,170,71,72,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,73,120,89,90,91,121,92,93,94,95,96,97,98,99,100,101,102,103,105,104,106,107,108,109,110,111,112,113,114,115,116,117,118,119,128,131,132,133,130,198,122,201,204,199,203,202,59,70,60,62,200,192,191,190,189,193,129,11,12,14,13,2,15,16,17,18,19,20,21,22,3,4,26,23,24,25,27,28,29,5,30,31,32,33,6,37,34,35,36,38,7,39,44,45,40,41,42,43,8,49,46,47,48,50,9,51,52,53,54,55,1,10,56,162,160,139,148,161,138,169,140,159,143,154,150,142,144,145,149,141,152,155,156,157,158,163,137,164,165,147,151,146,166,167,153,168,57,58,126,125,123,124,172,195,127,196,194,134,171,135,136,63,68,69,67,65,66,64],"latestChangedDtsFile":"./typescript/shared/prompts.d.ts"},"version":"4.9.4"}
|
package/package.json
CHANGED
package/source/app.ts
CHANGED
|
@@ -358,8 +358,13 @@ async function getDirectory(argv: Arguments, {name}: {name: string}) {
|
|
|
358
358
|
return directory;
|
|
359
359
|
}
|
|
360
360
|
|
|
361
|
-
type Template = 'basic' | 'single-file' | 'empty';
|
|
362
|
-
const VALID_TEMPLATES = new Set<Template>([
|
|
361
|
+
type Template = 'basic' | 'graphql' | 'single-file' | 'empty';
|
|
362
|
+
const VALID_TEMPLATES = new Set<Template>([
|
|
363
|
+
'basic',
|
|
364
|
+
'graphql',
|
|
365
|
+
'single-file',
|
|
366
|
+
'empty',
|
|
367
|
+
]);
|
|
363
368
|
|
|
364
369
|
async function getTemplate(argv: Arguments) {
|
|
365
370
|
if (argv['--template'] && VALID_TEMPLATES.has(argv['--template'] as any)) {
|
|
@@ -388,10 +393,15 @@ async function getTemplate(argv: Arguments) {
|
|
|
388
393
|
{
|
|
389
394
|
title: `${color.bold(
|
|
390
395
|
'Empty',
|
|
391
|
-
)},
|
|
396
|
+
)}, a basic React app without any extra runtime dependencies`,
|
|
392
397
|
value: 'empty',
|
|
393
398
|
},
|
|
394
|
-
|
|
399
|
+
{
|
|
400
|
+
title: `${color.bold(
|
|
401
|
+
'GraphQL',
|
|
402
|
+
)}, a web app with a GraphQL API, fetched using @tanstack/react-query`,
|
|
403
|
+
value: 'graphql',
|
|
404
|
+
},
|
|
395
405
|
],
|
|
396
406
|
})) as Template;
|
|
397
407
|
|
|
@@ -2,7 +2,7 @@ import {usePerformanceNavigation} from '@quilted/quilt';
|
|
|
2
2
|
|
|
3
3
|
import styles from './Start.module.css';
|
|
4
4
|
|
|
5
|
-
export function Start() {
|
|
5
|
+
export default function Start() {
|
|
6
6
|
// This hook indicates that the page has loaded. It is used as part of Quilt’s
|
|
7
7
|
// navigation performance tracking feature. If you have disabled this feature,
|
|
8
8
|
// you can remove this hook.
|
|
@@ -1,15 +1,12 @@
|
|
|
1
1
|
import '@quilted/quilt/global';
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
createServerRenderingRequestHandler,
|
|
5
|
-
} from '@quilted/quilt/server';
|
|
6
|
-
import createAssetManifest from '@quilted/quilt/magic/app/asset-manifest';
|
|
2
|
+
import {createRequestRouter, createServerRender} from '@quilted/quilt/server';
|
|
3
|
+
import {createAssetManifest} from '@quilted/quilt/magic/asset-manifest';
|
|
7
4
|
|
|
8
5
|
const router = createRequestRouter();
|
|
9
6
|
|
|
10
7
|
// For all GET requests, render our React application.
|
|
11
8
|
router.get(
|
|
12
|
-
|
|
9
|
+
createServerRender(
|
|
13
10
|
async () => {
|
|
14
11
|
const {default: App} = await import('./App');
|
|
15
12
|
return <App />;
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
import {useMemo} from 'react';
|
|
2
|
+
import {
|
|
3
|
+
QuiltApp,
|
|
4
|
+
GraphQLContext,
|
|
5
|
+
createGraphQLHttpFetch,
|
|
6
|
+
type GraphQLFetch,
|
|
7
|
+
useRoutes,
|
|
8
|
+
RoutePreloading,
|
|
9
|
+
type PropsWithChildren,
|
|
10
|
+
} from '@quilted/quilt';
|
|
11
|
+
import {ReactQueryContext} from '@quilted/react-query';
|
|
12
|
+
import {QueryClient} from '@tanstack/react-query';
|
|
13
|
+
|
|
14
|
+
import {Http} from './foundation/Http';
|
|
15
|
+
import {Head} from './foundation/Head';
|
|
16
|
+
import {Metrics} from './foundation/Metrics';
|
|
17
|
+
|
|
18
|
+
import {Start} from './features/Start';
|
|
19
|
+
|
|
20
|
+
export interface Props {
|
|
21
|
+
fetchGraphQL?: GraphQLFetch;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
// The root component for your application. You will typically render any
|
|
25
|
+
// app-wide context in this component.
|
|
26
|
+
export default function App(props: Props) {
|
|
27
|
+
return (
|
|
28
|
+
<QuiltApp http={<Http />} html={<Head />}>
|
|
29
|
+
<RoutePreloading>
|
|
30
|
+
<AppContext {...props}>
|
|
31
|
+
<Routes />
|
|
32
|
+
</AppContext>
|
|
33
|
+
</RoutePreloading>
|
|
34
|
+
</QuiltApp>
|
|
35
|
+
);
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
// This component renders the routes for your application. If you have a lot
|
|
39
|
+
// of routes, you may want to split this component into its own file.
|
|
40
|
+
function Routes() {
|
|
41
|
+
return useRoutes([
|
|
42
|
+
{
|
|
43
|
+
match: '/',
|
|
44
|
+
render: () => <Start />,
|
|
45
|
+
renderPreload: () => <Start.Preload />,
|
|
46
|
+
},
|
|
47
|
+
]);
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
// This component renders any app-wide context.
|
|
51
|
+
function AppContext({
|
|
52
|
+
children,
|
|
53
|
+
fetchGraphQL: customFetchGraphQL,
|
|
54
|
+
}: PropsWithChildren<Props>) {
|
|
55
|
+
const {fetchGraphQL, queryClient} = useMemo(() => {
|
|
56
|
+
return {
|
|
57
|
+
fetchGraphQL:
|
|
58
|
+
customFetchGraphQL ?? createGraphQLHttpFetch({uri: '/api/graphql'}),
|
|
59
|
+
queryClient: new QueryClient(),
|
|
60
|
+
};
|
|
61
|
+
}, [customFetchGraphQL]);
|
|
62
|
+
|
|
63
|
+
return (
|
|
64
|
+
<GraphQLContext fetch={fetchGraphQL}>
|
|
65
|
+
<ReactQueryContext client={queryClient}>
|
|
66
|
+
<Metrics>{children}</Metrics>
|
|
67
|
+
</ReactQueryContext>
|
|
68
|
+
</GraphQLContext>
|
|
69
|
+
);
|
|
70
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import {describe, it, expect} from '@quilted/quilt/testing';
|
|
2
|
+
|
|
3
|
+
import {
|
|
4
|
+
mountWithAppContext,
|
|
5
|
+
createGraphQLController,
|
|
6
|
+
fillGraphQL,
|
|
7
|
+
} from '~/tests/mount';
|
|
8
|
+
|
|
9
|
+
import Start from './Start';
|
|
10
|
+
import startQuery from './StartQuery.graphql';
|
|
11
|
+
|
|
12
|
+
describe('<Start />', () => {
|
|
13
|
+
it('welcomes the user with their name', async () => {
|
|
14
|
+
const name = 'Winston';
|
|
15
|
+
const graphql = createGraphQLController(fillGraphQL(startQuery, {name}));
|
|
16
|
+
|
|
17
|
+
const start = await mountWithAppContext(<Start />, {graphql});
|
|
18
|
+
|
|
19
|
+
expect(graphql).toHavePerformedGraphQLOperation(startQuery);
|
|
20
|
+
expect(start).toContainReactText(`Hello ${name}!`);
|
|
21
|
+
});
|
|
22
|
+
});
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import {usePerformanceNavigation} from '@quilted/quilt';
|
|
2
|
+
import {useGraphQLQuery} from '@quilted/react-query';
|
|
3
|
+
|
|
4
|
+
import styles from './Start.module.css';
|
|
5
|
+
import startQuery from './StartQuery.graphql';
|
|
6
|
+
|
|
7
|
+
export default function Start() {
|
|
8
|
+
const {data, isLoading} = useGraphQLQuery(startQuery);
|
|
9
|
+
|
|
10
|
+
// This hook indicates that the page has loaded. It is used as part of Quilt’s
|
|
11
|
+
// navigation performance tracking feature. If you have disabled this feature,
|
|
12
|
+
// you can remove this hook.
|
|
13
|
+
usePerformanceNavigation({state: isLoading ? 'loading' : 'complete'});
|
|
14
|
+
|
|
15
|
+
return (
|
|
16
|
+
<div className={styles.Start}>
|
|
17
|
+
{data ? `Hello ${data.name}!` : 'Hello!'}
|
|
18
|
+
</div>
|
|
19
|
+
);
|
|
20
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import {Viewport, SearchRobots} from '@quilted/quilt/html';
|
|
2
|
+
import {describe, it, expect} from '@quilted/quilt/testing';
|
|
3
|
+
|
|
4
|
+
import {mountWithAppContext} from '~/tests/mount';
|
|
5
|
+
|
|
6
|
+
import {Head} from './Head';
|
|
7
|
+
|
|
8
|
+
describe('<Head />', () => {
|
|
9
|
+
it('includes a responsive viewport tag', async () => {
|
|
10
|
+
const head = await mountWithAppContext(<Head />);
|
|
11
|
+
|
|
12
|
+
expect(head).toContainReactComponent(Viewport, {
|
|
13
|
+
cover: true,
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
|
|
17
|
+
it('prevents search robots from indexing the application', async () => {
|
|
18
|
+
const head = await mountWithAppContext(<Head />);
|
|
19
|
+
|
|
20
|
+
expect(head).toContainReactComponent(SearchRobots, {
|
|
21
|
+
index: false,
|
|
22
|
+
follow: false,
|
|
23
|
+
});
|
|
24
|
+
});
|
|
25
|
+
});
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import {Title, Viewport, Favicon, SearchRobots} from '@quilted/quilt/html';
|
|
2
|
+
|
|
3
|
+
// This component sets details of the HTML page. If you need to customize
|
|
4
|
+
// any of these details based on conditions like the active route, or some
|
|
5
|
+
// state about the user, you can move these components to wherever in your
|
|
6
|
+
// application you can read that state.
|
|
7
|
+
//
|
|
8
|
+
// @see https://github.com/lemonmade/quilt/blob/main/documentation/features/html.md
|
|
9
|
+
export function Head() {
|
|
10
|
+
return (
|
|
11
|
+
<>
|
|
12
|
+
{/* Sets the default `<title>` for this application. */}
|
|
13
|
+
<Title>App</Title>
|
|
14
|
+
|
|
15
|
+
{/*
|
|
16
|
+
* Sets the default favicon used by the application. You can
|
|
17
|
+
* change this to a different emoji, make it `blank`, or pass
|
|
18
|
+
* a URL with the `source` prop.
|
|
19
|
+
*/}
|
|
20
|
+
<Favicon emoji="🧶" />
|
|
21
|
+
|
|
22
|
+
{/* Adds a responsive-friendly `viewport` `<meta>` tag. */}
|
|
23
|
+
<Viewport cover />
|
|
24
|
+
|
|
25
|
+
{/*
|
|
26
|
+
* Disables all search indexing for this application. If you are
|
|
27
|
+
* building an unauthenticated app, you probably want to remove
|
|
28
|
+
* this component, or update it to control how your site is indexed
|
|
29
|
+
* by search engines.
|
|
30
|
+
*/}
|
|
31
|
+
<SearchRobots index={false} follow={false} />
|
|
32
|
+
</>
|
|
33
|
+
);
|
|
34
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {Head} from './Head/Head';
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import {CacheControl, ContentSecurityPolicy} from '@quilted/quilt/http';
|
|
2
|
+
import {describe, it, expect} from '@quilted/quilt/testing';
|
|
3
|
+
|
|
4
|
+
import {mountWithAppContext} from '~/tests/mount';
|
|
5
|
+
|
|
6
|
+
import {Http} from './Http';
|
|
7
|
+
|
|
8
|
+
describe('<Http />', () => {
|
|
9
|
+
it('does not cache the response', async () => {
|
|
10
|
+
const http = await mountWithAppContext(<Http />);
|
|
11
|
+
|
|
12
|
+
expect(http).toContainReactComponent(CacheControl, {
|
|
13
|
+
cache: false,
|
|
14
|
+
});
|
|
15
|
+
});
|
|
16
|
+
|
|
17
|
+
it('adds a content security policy with a strict default policy', async () => {
|
|
18
|
+
const http = await mountWithAppContext(<Http />);
|
|
19
|
+
|
|
20
|
+
expect(http).toContainReactComponent(ContentSecurityPolicy, {
|
|
21
|
+
defaultSources: ["'self'"],
|
|
22
|
+
});
|
|
23
|
+
});
|
|
24
|
+
});
|
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
import Env from '@quilted/quilt/env';
|
|
2
|
+
import {useCurrentUrl} from '@quilted/quilt';
|
|
3
|
+
import {
|
|
4
|
+
CacheControl,
|
|
5
|
+
ResponseHeader,
|
|
6
|
+
ContentSecurityPolicy,
|
|
7
|
+
PermissionsPolicy,
|
|
8
|
+
StrictTransportSecurity,
|
|
9
|
+
} from '@quilted/quilt/http';
|
|
10
|
+
|
|
11
|
+
// This component sets details on the HTTP response for all HTML server-rendering
|
|
12
|
+
// requests. If you need to customize any of these details based on conditions like
|
|
13
|
+
// the active route, or some state about the user, you can move these components to
|
|
14
|
+
// wherever in your application you can read that state.
|
|
15
|
+
//
|
|
16
|
+
// @see https://github.com/lemonmade/quilt/blob/main/documentation/features/http.md
|
|
17
|
+
export function Http() {
|
|
18
|
+
const isHttps = useCurrentUrl().protocol === 'https:';
|
|
19
|
+
|
|
20
|
+
return (
|
|
21
|
+
<>
|
|
22
|
+
{/*
|
|
23
|
+
* Disables the cache for this page, which is generally the best option
|
|
24
|
+
* when dealing with authenticated content. If your site doesn’t have
|
|
25
|
+
* authentication, or you have a better cache policy that works for your
|
|
26
|
+
* app or deployment, make sure to update this component accordingly!
|
|
27
|
+
*
|
|
28
|
+
* @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Cache-Control
|
|
29
|
+
*/}
|
|
30
|
+
<CacheControl cache={false} />
|
|
31
|
+
|
|
32
|
+
{/*
|
|
33
|
+
* Sets a strict content security policy for this page. If you load
|
|
34
|
+
* assets from other origins, or want to allow some more dangerous
|
|
35
|
+
* resource loading techniques like `eval`, you can change the
|
|
36
|
+
* `defaultSources` to be less restrictive, or add additional items
|
|
37
|
+
* to the allowlist for more specific directives.
|
|
38
|
+
*
|
|
39
|
+
* @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy
|
|
40
|
+
*/}
|
|
41
|
+
<ContentSecurityPolicy
|
|
42
|
+
reportOnly={Env.MODE === 'development'}
|
|
43
|
+
// By default, only allow sources from the page’s origin.
|
|
44
|
+
defaultSources={["'self'"]}
|
|
45
|
+
// Includes `'unsafe-inline'` because CSS is often necessary in development,
|
|
46
|
+
// and can be difficult to avoid in production.
|
|
47
|
+
styleSources={["'self'", "'unsafe-inline'"]}
|
|
48
|
+
// Includes `data:` so that an inline image can be used for the favicon.
|
|
49
|
+
// If you do not use the `emoji` or `blank` favicons in your app, and you
|
|
50
|
+
// do not load any other images as data URIs, you can remove this directive.
|
|
51
|
+
imageSources={["'self'", 'data:']}
|
|
52
|
+
// Don’t allow this page to be rendered as a frame from a different origin.
|
|
53
|
+
frameAncestors={false}
|
|
54
|
+
// Ensure that all requests made by this page are made over https, unless
|
|
55
|
+
// it is being served over http (typically, during local development)
|
|
56
|
+
upgradeInsecureRequests={isHttps}
|
|
57
|
+
/>
|
|
58
|
+
|
|
59
|
+
{/*
|
|
60
|
+
* Sets a strict permissions policy for this page, which limits access
|
|
61
|
+
* to some native browser features.
|
|
62
|
+
*
|
|
63
|
+
* @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Feature-Policy
|
|
64
|
+
*/}
|
|
65
|
+
<PermissionsPolicy
|
|
66
|
+
// Disables Google’s Federated Learning of Cohorts (“FLoC”) tracking initiative.
|
|
67
|
+
// @see https://www.eff.org/deeplinks/2021/03/googles-floc-terrible-idea
|
|
68
|
+
interestCohort={false}
|
|
69
|
+
// Don’t use synchronous XHRs!
|
|
70
|
+
// @see https://featurepolicy.info/policies/sync-xhr
|
|
71
|
+
syncXhr={false}
|
|
72
|
+
// Disables access to a few device APIs that are infrequently used
|
|
73
|
+
// and prone to abuse. If your application uses these APIs intentionally,
|
|
74
|
+
// feel free to remove the prop, or pass an array containing the origins
|
|
75
|
+
// that should be allowed to use this feature (e.g., `['self']` to allow
|
|
76
|
+
// only the main page’s origin).
|
|
77
|
+
camera={false}
|
|
78
|
+
microphone={false}
|
|
79
|
+
geolocation={false}
|
|
80
|
+
/>
|
|
81
|
+
|
|
82
|
+
{/*
|
|
83
|
+
* Instructs browsers to only load this page over HTTPS using the
|
|
84
|
+
* `Strict-Transport-Security` header.
|
|
85
|
+
*
|
|
86
|
+
* @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Strict-Transport-Security
|
|
87
|
+
*/}
|
|
88
|
+
{isHttps && <StrictTransportSecurity />}
|
|
89
|
+
|
|
90
|
+
{/*
|
|
91
|
+
* Controls how much information about the current page is included in
|
|
92
|
+
* requests (through the `Referer` header). The default value
|
|
93
|
+
* (strict-origin-when-cross-origin) means that only the origin is included
|
|
94
|
+
* for cross-origin requests, while the origin, path, and querystring
|
|
95
|
+
* are included for same-origin requests.
|
|
96
|
+
*
|
|
97
|
+
* @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Referrer-Policy
|
|
98
|
+
*/}
|
|
99
|
+
<ResponseHeader
|
|
100
|
+
name="Referrer-Policy"
|
|
101
|
+
value="strict-origin-when-cross-origin"
|
|
102
|
+
/>
|
|
103
|
+
|
|
104
|
+
{/*
|
|
105
|
+
* Instructs browsers to respect the MIME type in the `Content-Type` header.
|
|
106
|
+
*
|
|
107
|
+
* @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Content-Type-Options
|
|
108
|
+
*/}
|
|
109
|
+
<ResponseHeader name="X-Content-Type-Options" value="nosniff" />
|
|
110
|
+
</>
|
|
111
|
+
);
|
|
112
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {Http} from './Http/Http';
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import {
|
|
2
|
+
usePerformanceNavigationEvent,
|
|
3
|
+
type PropsWithChildren,
|
|
4
|
+
} from '@quilted/quilt';
|
|
5
|
+
import Env from '@quilted/quilt/env';
|
|
6
|
+
|
|
7
|
+
// This component records metrics about your application.
|
|
8
|
+
export function Metrics({children}: PropsWithChildren) {
|
|
9
|
+
usePerformanceNavigationEvent(async (navigation) => {
|
|
10
|
+
if (Env.MODE === 'development') {
|
|
11
|
+
// eslint-disable-next-line no-console
|
|
12
|
+
console.log('Navigation:');
|
|
13
|
+
// eslint-disable-next-line no-console
|
|
14
|
+
console.log(navigation);
|
|
15
|
+
return;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
// If you have a service that collects metrics, you can send navigation
|
|
19
|
+
// data to them here.
|
|
20
|
+
});
|
|
21
|
+
|
|
22
|
+
return <>{children}</>;
|
|
23
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {Metrics} from './Metrics/Metrics';
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import {type Configuration} from '@quilted/craft/graphql';
|
|
2
|
+
|
|
3
|
+
const configuration: Configuration = {
|
|
4
|
+
schema: 'app/graphql/schema.graphql',
|
|
5
|
+
documents: ['app/**/*.graphql'],
|
|
6
|
+
extensions: {
|
|
7
|
+
quilt: {
|
|
8
|
+
schema: [{kind: 'definitions', outputPath: 'app/graphql/schema.ts'}],
|
|
9
|
+
},
|
|
10
|
+
},
|
|
11
|
+
};
|
|
12
|
+
|
|
13
|
+
export default configuration;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "template-app-basic",
|
|
3
|
+
"type": "module",
|
|
4
|
+
"version": "0.0.0",
|
|
5
|
+
"private": true,
|
|
6
|
+
"scripts": {
|
|
7
|
+
"start": "node ./build/server/index.js"
|
|
8
|
+
},
|
|
9
|
+
"dependencies": {},
|
|
10
|
+
"devDependencies": {
|
|
11
|
+
"@quilted/react-query": "^0.1.15",
|
|
12
|
+
"@quilted/quilt": "^0.5.0",
|
|
13
|
+
"@tanstack/react-query": "^4.22.4",
|
|
14
|
+
"@types/react": "^18.0.0",
|
|
15
|
+
"graphql": "^16.6.0",
|
|
16
|
+
"preact": "^10.11.0",
|
|
17
|
+
"react": "npm:@quilted/react@^18.2.0",
|
|
18
|
+
"react-dom": "npm:@quilted/react-dom@^18.2.0"
|
|
19
|
+
},
|
|
20
|
+
"eslintConfig": {
|
|
21
|
+
"extends": "@quilted/eslint-config/app",
|
|
22
|
+
"ignorePatterns": [
|
|
23
|
+
"*.graphql.d.ts",
|
|
24
|
+
"graphql/schema.ts"
|
|
25
|
+
]
|
|
26
|
+
},
|
|
27
|
+
"browserslist": {
|
|
28
|
+
"defaults": [
|
|
29
|
+
"extends @quilted/browserslist-config/defaults"
|
|
30
|
+
],
|
|
31
|
+
"modules": [
|
|
32
|
+
"extends @quilted/browserslist-config/modules"
|
|
33
|
+
],
|
|
34
|
+
"evergreen": [
|
|
35
|
+
"extends @quilted/browserslist-config/evergreen"
|
|
36
|
+
]
|
|
37
|
+
}
|
|
38
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import {type GraphQLResult} from '@quilted/quilt';
|
|
2
|
+
import {type GraphQLSchema} from 'graphql';
|
|
3
|
+
|
|
4
|
+
export async function performGraphQLOperation<Data = Record<string, unknown>>(
|
|
5
|
+
operation: string,
|
|
6
|
+
{
|
|
7
|
+
variables,
|
|
8
|
+
operationName,
|
|
9
|
+
}: {variables?: Record<string, unknown>; operationName?: string} = {},
|
|
10
|
+
) {
|
|
11
|
+
const [schema, {execute, parse}] = await Promise.all([
|
|
12
|
+
getSchema(),
|
|
13
|
+
import('graphql'),
|
|
14
|
+
]);
|
|
15
|
+
|
|
16
|
+
const result = await execute({
|
|
17
|
+
schema,
|
|
18
|
+
document: parse(operation),
|
|
19
|
+
operationName,
|
|
20
|
+
variableValues: variables,
|
|
21
|
+
rootValue: {name: () => 'Winston'},
|
|
22
|
+
});
|
|
23
|
+
|
|
24
|
+
return result as GraphQLResult<Data>;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
let schemaPromise: Promise<GraphQLSchema>;
|
|
28
|
+
|
|
29
|
+
function getSchema() {
|
|
30
|
+
if (!schemaPromise) {
|
|
31
|
+
schemaPromise = (async () => {
|
|
32
|
+
const [{buildSchema}, {default: schemaSource}] = await Promise.all([
|
|
33
|
+
import('graphql'),
|
|
34
|
+
import('../graphql/schema'),
|
|
35
|
+
]);
|
|
36
|
+
|
|
37
|
+
return buildSchema(schemaSource);
|
|
38
|
+
})();
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
return schemaPromise;
|
|
42
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import '@quilted/quilt/global';
|
|
2
|
+
|
|
3
|
+
import {type GraphQLFetch, type GraphQLData} from '@quilted/quilt';
|
|
4
|
+
import {createRequestRouter, json} from '@quilted/quilt/request-router';
|
|
5
|
+
import {createServerRender} from '@quilted/quilt/server';
|
|
6
|
+
import {createAssetManifest} from '@quilted/quilt/magic/asset-manifest';
|
|
7
|
+
|
|
8
|
+
import {performGraphQLOperation} from './server/graphql';
|
|
9
|
+
|
|
10
|
+
const router = createRequestRouter();
|
|
11
|
+
|
|
12
|
+
// GraphQL API, called from the client
|
|
13
|
+
router.post('/api/graphql', async (request) => {
|
|
14
|
+
const {query, operationName, variables} = await request.json();
|
|
15
|
+
|
|
16
|
+
const result = await performGraphQLOperation(query, {
|
|
17
|
+
variables,
|
|
18
|
+
operationName,
|
|
19
|
+
});
|
|
20
|
+
|
|
21
|
+
return json(result);
|
|
22
|
+
});
|
|
23
|
+
|
|
24
|
+
// For all GET requests, render our React application.
|
|
25
|
+
router.get(
|
|
26
|
+
createServerRender(
|
|
27
|
+
async () => {
|
|
28
|
+
const {default: App} = await import('./App');
|
|
29
|
+
|
|
30
|
+
// GraphQL API, called during server rendering
|
|
31
|
+
const fetchGraphQL: GraphQLFetch = async (operation, variables) => {
|
|
32
|
+
type Data = GraphQLData<typeof operation>;
|
|
33
|
+
|
|
34
|
+
const result = await performGraphQLOperation<Data>(operation.source, {
|
|
35
|
+
variables,
|
|
36
|
+
operationName: operation.name,
|
|
37
|
+
});
|
|
38
|
+
|
|
39
|
+
return result;
|
|
40
|
+
};
|
|
41
|
+
|
|
42
|
+
return <App fetchGraphQL={fetchGraphQL} />;
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
assets: createAssetManifest(),
|
|
46
|
+
},
|
|
47
|
+
),
|
|
48
|
+
);
|
|
49
|
+
|
|
50
|
+
export default router;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import {
|
|
2
|
+
TestGraphQL,
|
|
3
|
+
createGraphQLSchema,
|
|
4
|
+
createGraphQLFiller,
|
|
5
|
+
createGraphQLController,
|
|
6
|
+
type GraphQLController,
|
|
7
|
+
} from '@quilted/quilt/graphql/testing';
|
|
8
|
+
|
|
9
|
+
import schema from '../graphql/schema';
|
|
10
|
+
|
|
11
|
+
export const fillGraphQL = createGraphQLFiller(createGraphQLSchema(schema));
|
|
12
|
+
|
|
13
|
+
export {createGraphQLController, TestGraphQL, type GraphQLController};
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
import '@quilted/quilt/matchers';
|
|
2
|
+
|
|
3
|
+
import {type Router} from '@quilted/quilt';
|
|
4
|
+
import {
|
|
5
|
+
createMount,
|
|
6
|
+
QuiltAppTesting,
|
|
7
|
+
createTestRouter,
|
|
8
|
+
} from '@quilted/quilt/testing';
|
|
9
|
+
import {QueryClient, QueryClientProvider} from '@tanstack/react-query';
|
|
10
|
+
|
|
11
|
+
import {
|
|
12
|
+
TestGraphQL,
|
|
13
|
+
fillGraphQL,
|
|
14
|
+
createGraphQLController,
|
|
15
|
+
type GraphQLController,
|
|
16
|
+
} from './graphql';
|
|
17
|
+
|
|
18
|
+
export {createTestRouter, fillGraphQL, createGraphQLController};
|
|
19
|
+
|
|
20
|
+
export interface MountOptions {
|
|
21
|
+
/**
|
|
22
|
+
* A custom router to use for this component test. You can use a
|
|
23
|
+
* custom router to simulate a particular URL, and you can spy on
|
|
24
|
+
* its navigation method to check that components navigate as
|
|
25
|
+
* you expect.
|
|
26
|
+
*/
|
|
27
|
+
router?: Router;
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* An object that controls the responses to GraphQL queries and mutations
|
|
31
|
+
* for the component under test. You can customize the responses using
|
|
32
|
+
* the `fillGraphQL` and `createGraphQLController` utilities provided
|
|
33
|
+
* by this module.
|
|
34
|
+
*
|
|
35
|
+
* ```tsx
|
|
36
|
+
* import {mountWithAppContext, fillGraphQL, createGraphQLController} from '~/tests/mount';
|
|
37
|
+
*
|
|
38
|
+
* import {MyComponent} from './MyComponent';
|
|
39
|
+
* import myComponentQuery from './MyComponentQuery.graphql';
|
|
40
|
+
*
|
|
41
|
+
* const myComponent = await mountWithAppContext(<MyComponent />, {
|
|
42
|
+
* graphql: createGraphQLController(
|
|
43
|
+
* fillGraphQL(myComponentQuery, {user: {name: 'Winston'}}),
|
|
44
|
+
* ),
|
|
45
|
+
* });
|
|
46
|
+
* ```
|
|
47
|
+
*/
|
|
48
|
+
graphql?: GraphQLController;
|
|
49
|
+
|
|
50
|
+
/**
|
|
51
|
+
* A custom locale to use for this component test.
|
|
52
|
+
*/
|
|
53
|
+
locale?: string;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
export interface MountContext {
|
|
57
|
+
/**
|
|
58
|
+
* The router used for this component test.
|
|
59
|
+
*/
|
|
60
|
+
readonly router: Router;
|
|
61
|
+
|
|
62
|
+
/**
|
|
63
|
+
* The GraphQL controller used for this component test.
|
|
64
|
+
*/
|
|
65
|
+
readonly graphql: GraphQLController;
|
|
66
|
+
|
|
67
|
+
/**
|
|
68
|
+
* The react-query client used for this component test.
|
|
69
|
+
*/
|
|
70
|
+
readonly queryClient: QueryClient;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
export interface MountActions extends Record<string, never> {}
|
|
74
|
+
|
|
75
|
+
/**
|
|
76
|
+
* Mounts a component with test-friendly versions of all global
|
|
77
|
+
* context available to the application.
|
|
78
|
+
*/
|
|
79
|
+
export const mountWithAppContext = createMount<
|
|
80
|
+
MountOptions,
|
|
81
|
+
MountContext,
|
|
82
|
+
MountActions,
|
|
83
|
+
true
|
|
84
|
+
>({
|
|
85
|
+
// Create context that can be used by the `render` function, and referenced by test
|
|
86
|
+
// authors on the `root.context` property. Context is used to share data between your
|
|
87
|
+
// React tree and your test code, and is ideal for mocking out global context providers.
|
|
88
|
+
context({router = createTestRouter(), graphql = createGraphQLController()}) {
|
|
89
|
+
return {router, graphql, queryClient: new QueryClient()};
|
|
90
|
+
},
|
|
91
|
+
// Render all of our app-wide context providers around each component under test.
|
|
92
|
+
render(element, {router, graphql, queryClient}, {locale}) {
|
|
93
|
+
return (
|
|
94
|
+
<QuiltAppTesting routing={router} localization={locale}>
|
|
95
|
+
<TestGraphQL controller={graphql}>
|
|
96
|
+
<QueryClientProvider client={queryClient}>
|
|
97
|
+
{element}
|
|
98
|
+
</QueryClientProvider>
|
|
99
|
+
</TestGraphQL>
|
|
100
|
+
</QuiltAppTesting>
|
|
101
|
+
);
|
|
102
|
+
},
|
|
103
|
+
async afterMount(wrapper) {
|
|
104
|
+
// If your components need to resolve data before they can render, you can
|
|
105
|
+
// use this hook to wait for that data to be ready. This will cause the
|
|
106
|
+
// `mount` function to return a promise, so that the component is only usable
|
|
107
|
+
// once the data is ready.
|
|
108
|
+
|
|
109
|
+
await wrapper.act(async () => {
|
|
110
|
+
await wrapper.context.graphql.resolveAll();
|
|
111
|
+
|
|
112
|
+
// react-query needs an extra tick to set state in response to GraphQL queries.
|
|
113
|
+
await new Promise((resolve) => setTimeout(resolve, 0));
|
|
114
|
+
});
|
|
115
|
+
},
|
|
116
|
+
});
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"extends": "@quilted/typescript/project.json",
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
"outDir": "build/typescript",
|
|
5
|
+
"paths": {
|
|
6
|
+
"~/shared/*": ["./shared/*"],
|
|
7
|
+
"~/tests/*": ["./tests/*"]
|
|
8
|
+
}
|
|
9
|
+
},
|
|
10
|
+
"include": ["**/*"],
|
|
11
|
+
"exclude": ["build"],
|
|
12
|
+
"references": []
|
|
13
|
+
}
|