@quilted/create 0.1.16 → 0.1.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,27 @@
1
1
  # @quilted/create
2
2
 
3
+ ## 0.1.19
4
+
5
+ ### Patch Changes
6
+
7
+ - [#359](https://github.com/lemonmade/quilt/pull/359) [`2eceac54`](https://github.com/lemonmade/quilt/commit/2eceac546fa3ee3e2c4d2887ab4a6a021acb52cd) Thanks [@lemonmade](https://github.com/lemonmade)! - Update TypeScript and ESLint to latest versions
8
+
9
+ ## 0.1.18
10
+
11
+ ### Patch Changes
12
+
13
+ - [`a98c7c2b`](https://github.com/lemonmade/quilt/commit/a98c7c2bc40fa29b95e1ca3005d5c0fe995c9a5f) Thanks [@lemonmade](https://github.com/lemonmade)! - Add versioning instructions to package create
14
+
15
+ * [`ae2475f7`](https://github.com/lemonmade/quilt/commit/ae2475f735a5e83969cbb596efe7b31cfd9f893b) Thanks [@lemonmade](https://github.com/lemonmade)! - Add tests to created packages
16
+
17
+ ## 0.1.17
18
+
19
+ ### Patch Changes
20
+
21
+ - [`78d28015`](https://github.com/lemonmade/quilt/commit/78d280157c239175a431e12dbb9fda08f2c84a09) Thanks [@lemonmade](https://github.com/lemonmade)! - Fix create package flow in monorepos
22
+
23
+ * [`ae3bbaa8`](https://github.com/lemonmade/quilt/commit/ae3bbaa8e2cc50bb8f57e332fa0aa12100153fc6) Thanks [@lemonmade](https://github.com/lemonmade)! - Add `directory` to package.json in monorepo packages
24
+
3
25
  ## 0.1.16
4
26
 
5
27
  ### Patch Changes
package/README.md ADDED
@@ -0,0 +1,30 @@
1
+ # `@quilted/create`
2
+
3
+ This package provides a command line tool for generating new Quilt projects.
4
+
5
+ When run inside an existing [Quilt workspace](../../documentation/projects.md), this command will add additional [apps](../../documentation/projects.md#apps) or [packages](../../documentation/projects.md#packages) to the same workspace.
6
+
7
+ You can also run it outside an existing repository, and it will create a new repository with a Quilt app or package. This new repo can be configured either as a “monorepo”, with room for additional projects, or as a repo just focused on a single project.
8
+
9
+ The best way to use this command is to run the `create` command in your favorite package manager. Quilt supports [npm](https://docs.npmjs.com/about-npm), [yarn](https://yarnpkg.com), and [pnpm](https://pnpm.io).
10
+
11
+ ```bash
12
+ pnpm create @quilted # for pnpm
13
+ npm create @quilted # for npm
14
+ yarn create @quilted # for yarn
15
+ ```
16
+
17
+ > **Note:** If you don’t already have a favorite package manager, we recommend [pnpm](https://pnpm.io). pnpm is fast, takes up less space on disk, and produces a strict package installation that enforces dependency management best practices.
18
+
19
+ This command will ask you what type of project you want to create. If you want to jump right to creating a particular kind of project, you can pass it as an additional argument to this command:
20
+
21
+ ```bash
22
+ pnpm create @quilted app # create an app with pnpm
23
+ npm create @quilted package # create a package with npm
24
+ ```
25
+
26
+ This command also accepts many command-line flags to pre-answer the questions you will be asked when creating your project. To learn more about these flags, run the command with the `--help` flag:
27
+
28
+ ```bash
29
+ pnpm create @quilted --help
30
+ ```
package/build/cjs/app.cjs CHANGED
@@ -120,8 +120,6 @@ async function createApp() {
120
120
  workspacePackageJson.name = packageManager.toValidPackageName(name);
121
121
  workspacePackageJson.eslintConfig = projectPackageJson.eslintConfig;
122
122
  workspacePackageJson.browserslist = projectPackageJson.browserslist;
123
- const addBackToTSConfigInclude = new Set(['quilt.project.ts', '*.test.ts', '*.test.tsx']);
124
- projectTSConfig.exclude = projectTSConfig.exclude.filter(excluded => !addBackToTSConfigInclude.has(excluded));
125
123
  let quiltProject = await appTemplate.read('quilt.project.ts');
126
124
  quiltProject = quiltProject.replace('quiltApp', 'quiltWorkspace, quiltApp').replace('quiltApp(', 'quiltWorkspace(), quiltApp(');
127
125
  await outputRoot.write('quilt.project.ts', await packageManager.format(quiltProject, {
@@ -153,8 +153,6 @@ async function createPackage() {
153
153
  isPublic,
154
154
  registry: argv['--registry']
155
155
  });
156
- const addBackToTSConfigInclude = new Set(['quilt.project.ts', '*.test.ts', '*.test.tsx']);
157
- projectTSConfig.exclude = projectTSConfig.exclude.filter(excluded => !addBackToTSConfigInclude.has(excluded));
158
156
  quiltProject = quiltProject.replace('quiltPackage', 'quiltWorkspace, quiltPackage').replace('quiltPackage(', 'quiltWorkspace(), quiltPackage(');
159
157
  await outputRoot.write('quilt.project.ts', await packageManager.format(quiltProject, {
160
158
  as: 'typescript'
@@ -189,6 +187,7 @@ async function createPackage() {
189
187
  if (partOfMonorepo) {
190
188
  // Write the package’s package.json (the root one was already created)
191
189
  const projectPackageJson = JSON.parse(await packageTemplate.read('package.json'));
190
+ projectPackageJson.repository.directory = path__namespace.relative(directory, packageDirectory);
192
191
  adjustPackageJson(projectPackageJson, {
193
192
  name: packageManager.toValidPackageName(name),
194
193
  react: useReact,
@@ -198,6 +197,7 @@ async function createPackage() {
198
197
  await outputRoot.write(path__namespace.join(packageDirectory, 'package.json'), await packageManager.format(JSON.stringify(projectPackageJson), {
199
198
  as: 'json-stringify'
200
199
  }));
200
+ await outputRoot.write(path__namespace.join(packageDirectory, 'quilt.project.ts'), quiltProject);
201
201
  await Promise.all([packageManager.addToTsConfig(packageDirectory, outputRoot), packageManager.addToPackageManagerWorkspaces(packageDirectory, outputRoot, packageManager$1)]);
202
202
  }
203
203
 
@@ -212,6 +212,18 @@ async function createPackage() {
212
212
  console.log('Installed dependencies.');
213
213
  }
214
214
 
215
+ const packageJsonInstructions = index.stripIndent`
216
+ Your new package is ready to go! However, before you go too much further,
217
+ you should update the following fields in ${index.cyan_1(packageManager.relativeDirectoryForDisplay(path__namespace.relative(process.cwd(), path__namespace.join(packageDirectory, 'package.json'))))}:
218
+
219
+ - ${index.bold_1(`"description"`)}, where you provide a description of what your package does
220
+ - ${index.bold_1(`"repository"`)}, where you should include the ${index.bold_1(`"url"`)} of your project’s repo
221
+
222
+ Before you publish your package, you will also want to update the ${index.bold_1(`"version"`)}
223
+ field in the package.json file.
224
+ `;
225
+ console.log();
226
+ console.log(packageJsonInstructions);
215
227
  const commands = [];
216
228
 
217
229
  if (!inWorkspace && directory !== process.cwd()) {
@@ -227,17 +239,20 @@ async function createPackage() {
227
239
  commands.push(`git init && git add -A && git commit -m "Initial commit" ${index.dim_1('# Start your git history (optional)')}`);
228
240
  }
229
241
 
230
- const whatsNext = index.stripIndent`
231
- Your new package is ready to go! There’s just ${commands.length > 1 ? 'a few more steps' : 'one more step'} you’ll need to take
232
- in order to start building:
233
- `;
234
- console.log();
235
- console.log(whatsNext);
236
- console.log();
237
- console.log(commands.map(command => ` ${command}`).join('\n'));
242
+ if (commands.length > 0) {
243
+ const whatsNext = index.stripIndent`
244
+ After you update your package.json, there’s ${commands.length > 1 ? 'a few more steps' : 'one more step'} you’ll need to take
245
+ in order to start building:
246
+ `;
247
+ console.log();
248
+ console.log(whatsNext);
249
+ console.log();
250
+ console.log(commands.map(command => ` ${command}`).join('\n'));
251
+ }
252
+
238
253
  const followUp = index.stripIndent`
239
- Quilt can also help you build, test, lint, and type-check your new package.
240
- You can learn more about building packages with Quilt by reading the documentation:
254
+ Quilt can help you build, test, lint, and type-check your new package. You
255
+ can learn more about building packages with Quilt by reading the documentation:
241
256
  ${index.underline_1(index.magenta_1('https://github.com/lemonmade/quilt/tree/main/documentation'))}
242
257
 
243
258
  Have fun! 🎉
package/build/esm/app.mjs CHANGED
@@ -97,8 +97,6 @@ async function createApp() {
97
97
  workspacePackageJson.name = toValidPackageName(name);
98
98
  workspacePackageJson.eslintConfig = projectPackageJson.eslintConfig;
99
99
  workspacePackageJson.browserslist = projectPackageJson.browserslist;
100
- const addBackToTSConfigInclude = new Set(['quilt.project.ts', '*.test.ts', '*.test.tsx']);
101
- projectTSConfig.exclude = projectTSConfig.exclude.filter(excluded => !addBackToTSConfigInclude.has(excluded));
102
100
  let quiltProject = await appTemplate.read('quilt.project.ts');
103
101
  quiltProject = quiltProject.replace('quiltApp', 'quiltWorkspace, quiltApp').replace('quiltApp(', 'quiltWorkspace(), quiltApp(');
104
102
  await outputRoot.write('quilt.project.ts', await format(quiltProject, {
@@ -1,7 +1,7 @@
1
1
  import * as fs from 'fs';
2
2
  import * as path from 'path';
3
3
  import { execSync } from 'child_process';
4
- import { s as stripIndent, c as cyan_1, p as printHelp, g as getCreateAsMonorepo, a as getShouldInstall, d as getPackageManager, e as getExtrasToSetup, f as dim_1, u as underline_1, m as magenta_1, h as arg_1, i as prompt, b as bold_1 } from './index.mjs';
4
+ import { s as stripIndent, c as cyan_1, p as printHelp, g as getCreateAsMonorepo, a as getShouldInstall, d as getPackageManager, e as getExtrasToSetup, b as bold_1, f as dim_1, u as underline_1, m as magenta_1, h as arg_1, i as prompt } from './index.mjs';
5
5
  import { t as toValidPackageName, e as emptyDirectory, f as format, l as loadTemplate, a as addToTsConfig, b as addToPackageManagerWorkspaces, r as relativeDirectoryForDisplay, i as isEmpty, c as createOutputTarget } from './package-manager.mjs';
6
6
  import 'tty';
7
7
  import 'url';
@@ -130,8 +130,6 @@ async function createPackage() {
130
130
  isPublic,
131
131
  registry: argv['--registry']
132
132
  });
133
- const addBackToTSConfigInclude = new Set(['quilt.project.ts', '*.test.ts', '*.test.tsx']);
134
- projectTSConfig.exclude = projectTSConfig.exclude.filter(excluded => !addBackToTSConfigInclude.has(excluded));
135
133
  quiltProject = quiltProject.replace('quiltPackage', 'quiltWorkspace, quiltPackage').replace('quiltPackage(', 'quiltWorkspace(), quiltPackage(');
136
134
  await outputRoot.write('quilt.project.ts', await format(quiltProject, {
137
135
  as: 'typescript'
@@ -166,6 +164,7 @@ async function createPackage() {
166
164
  if (partOfMonorepo) {
167
165
  // Write the package’s package.json (the root one was already created)
168
166
  const projectPackageJson = JSON.parse(await packageTemplate.read('package.json'));
167
+ projectPackageJson.repository.directory = path.relative(directory, packageDirectory);
169
168
  adjustPackageJson(projectPackageJson, {
170
169
  name: toValidPackageName(name),
171
170
  react: useReact,
@@ -175,6 +174,7 @@ async function createPackage() {
175
174
  await outputRoot.write(path.join(packageDirectory, 'package.json'), await format(JSON.stringify(projectPackageJson), {
176
175
  as: 'json-stringify'
177
176
  }));
177
+ await outputRoot.write(path.join(packageDirectory, 'quilt.project.ts'), quiltProject);
178
178
  await Promise.all([addToTsConfig(packageDirectory, outputRoot), addToPackageManagerWorkspaces(packageDirectory, outputRoot, packageManager)]);
179
179
  }
180
180
 
@@ -189,6 +189,18 @@ async function createPackage() {
189
189
  console.log('Installed dependencies.');
190
190
  }
191
191
 
192
+ const packageJsonInstructions = stripIndent`
193
+ Your new package is ready to go! However, before you go too much further,
194
+ you should update the following fields in ${cyan_1(relativeDirectoryForDisplay(path.relative(process.cwd(), path.join(packageDirectory, 'package.json'))))}:
195
+
196
+ - ${bold_1(`"description"`)}, where you provide a description of what your package does
197
+ - ${bold_1(`"repository"`)}, where you should include the ${bold_1(`"url"`)} of your project’s repo
198
+
199
+ Before you publish your package, you will also want to update the ${bold_1(`"version"`)}
200
+ field in the package.json file.
201
+ `;
202
+ console.log();
203
+ console.log(packageJsonInstructions);
192
204
  const commands = [];
193
205
 
194
206
  if (!inWorkspace && directory !== process.cwd()) {
@@ -204,17 +216,20 @@ async function createPackage() {
204
216
  commands.push(`git init && git add -A && git commit -m "Initial commit" ${dim_1('# Start your git history (optional)')}`);
205
217
  }
206
218
 
207
- const whatsNext = stripIndent`
208
- Your new package is ready to go! There’s just ${commands.length > 1 ? 'a few more steps' : 'one more step'} you’ll need to take
209
- in order to start building:
210
- `;
211
- console.log();
212
- console.log(whatsNext);
213
- console.log();
214
- console.log(commands.map(command => ` ${command}`).join('\n'));
219
+ if (commands.length > 0) {
220
+ const whatsNext = stripIndent`
221
+ After you update your package.json, there’s ${commands.length > 1 ? 'a few more steps' : 'one more step'} you’ll need to take
222
+ in order to start building:
223
+ `;
224
+ console.log();
225
+ console.log(whatsNext);
226
+ console.log();
227
+ console.log(commands.map(command => ` ${command}`).join('\n'));
228
+ }
229
+
215
230
  const followUp = stripIndent`
216
- Quilt can also help you build, test, lint, and type-check your new package.
217
- You can learn more about building packages with Quilt by reading the documentation:
231
+ Quilt can help you build, test, lint, and type-check your new package. You
232
+ can learn more about building packages with Quilt by reading the documentation:
218
233
  ${underline_1(magenta_1('https://github.com/lemonmade/quilt/tree/main/documentation'))}
219
234
 
220
235
  Have fun! 🎉
@@ -1 +1 @@
1
- {"program":{"fileNames":["../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.esnext.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.esnext.intl.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","../source/help.ts","../../../node_modules/.pnpm/@types+prettier@2.6.3/node_modules/@types/prettier/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.0.14/node_modules/@types/prompts/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/emitter.d.ts","../../events/build/typescript/index.d.ts","../source/shared/prompts.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-yaml.d.ts","../source/shared.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","../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+react@17.0.45/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@17.0.45/node_modules/@types/react/index.d.ts","../../../node_modules/.pnpm/@types+react-dom@17.0.17/node_modules/@types/react-dom/index.d.ts"],"fileInfos":[{"version":"f5c28122bee592cfaf5c72ed7bcc47f453b79778ffa6e301f45d21a0970719d4","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9","746d62152361558ea6d6115cf0da4dd10ede041d14882ede3568bce5dc4b4f1f","3eb679a56cab01203a1ba7edeade937f6a2a4c718513b2cd930b579807fa9359","aea179452def8a6152f98f63b191b84e7cbd69b0e248c91e61fb2e52328abe8c",{"version":"3f149f903dd20dfeb7c80e228b659f0e436532de772469980dbd00702cc05cc1","affectsGlobalScope":true},{"version":"1272277fe7daa738e555eb6cc45ded42cc2d0f76c07294142283145d49e96186","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","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":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"cd483c056da900716879771893a3c9772b66c3c88f8943b4205aec738a94b1d0","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"6c55633c733c8378db65ac3da7a767c3cf2cf3057f0565a9124a16a3a2019e87","affectsGlobalScope":true},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true},{"version":"ff667ee99e5a28c3dc5063a3cfd4d3436699e3fb035d4451037da7f567da542a","affectsGlobalScope":true},{"version":"34478567f8a80171f88f2f30808beb7da15eac0538ae91282dd33dce928d98ed","affectsGlobalScope":true},{"version":"6ea9ab679ea030cf46c16a711a316078e9e02619ebaf07a7fcd16964aba88f2d","affectsGlobalScope":true},{"version":"6bda95ea27a59a276e46043b7065b55bd4b316c25e70e29b572958fa77565d43","affectsGlobalScope":true},{"version":"aedb8de1abb2ff1095c153854a6df7deae4a5709c37297f9d6e9948b6806fa66","affectsGlobalScope":true},{"version":"11ffe3c281f375fff9ffdde8bbec7669b4dd671905509079f866f2354a788064","affectsGlobalScope":true},{"version":"c37f8a49593a0030eecb51bbfa270e709bec9d79a6cc3bb851ef348d4e6b26f8","affectsGlobalScope":true},"5fd321c200cd8891db9851493872f01075a3f1032349ed37c458d7f67d8051e2","c8adda9f45d2f7ec9fb28c59859db32da6c2835f1fec96433e2729e5805fa46f","c5590caef278ad8ba2532ec93e29a32ac354dfb333277348acce18512891d3b2",{"version":"bede7c038ccfa6bfa01b54fe73bfd2e25f90d967f2ce48c8685bd5364b31c2b5","signature":"b1367a2230b500b09abfe9e14a79a1299f04dd06cc61bd30a30ceee5c0f29fdb"},"f1d8b21cdf08726021c8cce0cd6159486236cf1d633eeabbc435b5b2e5869c2e","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","5f7614d60b32dc66e5d665eafd10d7619eedca3a20f0e876e9ec73141735e364","8f0865a0135d2895246bfcd9cd4497c5028d3c14e4ba12f2cbec44a620b76d57","38e78ef3d6d2fb0d42f091cc4859ddcb65d12d5e7c7cd91079d2c93efef7fa1a","e38cda15170b7e69a52f92256f26ccfa79a43961286894f1b68380b11f9292e4","4d35e0a0f6dbe908b8b50ede27f8bf93b57f0a88db0288d079f7a8e8546af38b","896327d93bf0b44054c3abe6e7cf209fe5df9304cb869f804ad12915782226a2","f9a2742e3e409627f2062c6a64b9868dc406768997f32c14fe1edee9c9e64737",{"version":"102ff16a892c8d23f053b50c9e834abcd2e08ed837c8d27d94408d8e152a50fe","signature":"f44c34a7473a01adefa48239d23bbf2c92bceeaaae4efd541588a6af219c469d"},"c58eb580d75b517e64396a9aac843bad347f38481a1e64ca12998e92e12ceb08","88a3183e8e099a405861299a83ac855b99fef3985ed31e73016f61914b3a09ea","8592b3ee11de8e3d3257868571f52dfdcb973ec8af799c23681b41744934e3fd","f83148c8ce30f74fd32c8e2d1d0ea5b1c2517ce78b6271bffa09fb9c482ee35c",{"version":"58ed7b05016efc74420dd681618f985cfdb8ee7f61eaa2d1a6874a3e3e514aca","signature":"0b6725dbacfb0be8d44566782ecf708bd2cdf21d9ed9aee618310a905a4ac132"},{"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":"9f2237787b39fd39d12a275c0b05d560ec2ca9b0d2cc9741d668125153174eed","signature":"a0fb1ca421ef9e52a14869f0070dfc14f61b82b0f364d2303281cb312d4f72e4"},{"version":"0ec995b3e01b7eabbd59ba2419b335b9becd7aeff9173fb46895c1ff946abd4a","signature":"fcbc367deb7b8967c025cbf233324ce8d368630942cd80c4f01c0d0296d701c6"},{"version":"f051b1d8277bbfa0c5b215695ee5aeda25f72e741d55adcb7588f013d9f86bd0","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},"ae23745daebdb580f8c730f1c1fd666ea95cd87a859406cd74a6892625e51559","ed19da84b7dbf00952ad0b98ce5c194f1903bcf7c94d8103e8e0d63b271543ae",{"version":"bbdf156fea2fabed31a569445835aeedcc33643d404fcbaa54541f06c109df3f","affectsGlobalScope":true},"ba7617784f6b9aeac5e20c5eea869bbc3ef31b905f59c796b0fd401dae17c111","6a386ff939f180ae8ef064699d8b7b6e62bc2731a62d7fbf5e02589383838dea","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"a2037c0eea8dc883f41b8dcbc7e0f9b305f79989f4d310d77c9c321432a66411","affectsGlobalScope":true},"f02af84e409458d77baa712aaac7680635b47bd162a39367618ec744085f97be"],"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,"noUncheckedIndexedAccess":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./typescript","rootDir":"../source","skipLibCheck":true,"sourceMap":false,"strict":true,"target":99},"fileIdsList":[[103],[76,103,110],[60,103],[63,103],[64,69,103],[65,75,76,83,92,102,103],[65,66,75,83,103],[67,103],[68,69,76,84,103],[69,92,99,103],[70,72,75,83,103],[71,103],[72,73,103],[74,75,103],[75,103],[75,76,77,92,102,103],[75,76,77,92,103],[78,83,92,102,103],[75,76,78,79,83,92,99,102,103],[78,80,92,99,102,103],[60,61,62,63,64,65,66,67,68,69,70,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],[75,81,103],[82,102,103],[72,75,83,92,103],[84,103],[85,103],[63,86,103],[87,101,103,107],[88,103],[89,103],[75,90,103],[90,91,103,105],[75,92,93,94,103],[92,94,103],[92,93,103],[95,103],[96,103],[75,97,98,103],[97,98,103],[69,83,99,103],[100,103],[83,101,103],[64,78,89,102,103],[69,103],[92,103,104],[103,105],[103,106],[64,69,75,77,86,92,102,103,105,107],[92,103,108],[59,103],[92,103,110],[103,169],[103,165,166,167,168],[103,126,140,142,146,148,149],[103,126,130,132,133,135,138,140,142,147,149],[103,134,135,142,148],[103,148],[103,125],[103,125,126,130,132,133,134,135,138,139,140,142,146,147,148,150,151,152,153,154,155,156],[103,129,130,132,133,141,142,146,148],[103,135,142],[103,130,132,133,138,141,146,147,148],[103,129,130,132,133,135,136,137,141,142,146,147],[103,129,142,146],[103,129,130,131,135,138,141,142,146],[103,129,138],[103,141,142,148],[103,125,127,128,130,134,135,138,139,142,149],[103,126,130,142,146],[103,146],[103,143,144,145],[103,127,140,142,148,150],[103,134,138,140,142],[103,134,140],[103,130,132,133,135,136,140,141,142],[103,129,133,134,157],[103,129,130,132,134,135,138,141],[103,140,147,148],[103,130,132,133,138,142,147,148],[55,56,57,58,65,76,85,103,118,123,124,159],[55,56,57,58,103,117,123,160,161],[56,57,103],[103,162],[59,76,85,102,103,118,119,120,121,122],[85,103,123,157,158],[55,56,76,103,111,117],[85,103,123],[103,112],[103,112,113,114,115,116],[103,112,113],[59,118],[123],[55,111]],"referencedMap":[[57,1],[164,2],[158,1],[60,3],[61,3],[63,4],[64,5],[65,6],[66,7],[67,8],[68,9],[69,10],[70,11],[71,12],[72,13],[73,13],[74,14],[75,15],[76,16],[77,17],[62,1],[109,1],[78,18],[79,19],[80,20],[110,21],[81,22],[82,23],[83,24],[84,25],[85,26],[86,27],[87,28],[88,29],[89,30],[90,31],[91,32],[92,33],[94,34],[93,35],[95,36],[96,37],[97,38],[98,39],[99,40],[100,41],[101,42],[102,43],[103,44],[104,45],[105,46],[106,47],[107,48],[108,49],[59,1],[121,50],[122,50],[120,50],[111,51],[167,1],[170,52],[165,1],[169,53],[168,1],[55,1],[56,1],[166,1],[119,1],[11,1],[12,1],[14,1],[13,1],[2,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[22,1],[3,1],[4,1],[26,1],[23,1],[24,1],[25,1],[27,1],[28,1],[29,1],[5,1],[30,1],[31,1],[32,1],[33,1],[6,1],[34,1],[35,1],[36,1],[37,1],[7,1],[38,1],[43,1],[44,1],[39,1],[40,1],[41,1],[42,1],[8,1],[48,1],[45,1],[46,1],[47,1],[49,1],[9,1],[50,1],[51,1],[52,1],[53,1],[1,1],[10,1],[54,1],[150,54],[148,55],[127,1],[136,56],[149,57],[126,58],[157,59],[128,1],[147,60],[131,61],[142,62],[138,63],[130,64],[132,65],[133,65],[137,66],[129,67],[140,68],[143,69],[144,70],[145,70],[146,71],[151,1],[125,1],[152,70],[153,72],[135,73],[139,74],[134,75],[154,76],[155,77],[141,78],[156,79],[160,80],[162,81],[58,82],[163,83],[161,80],[123,84],[159,85],[118,86],[124,87],[112,1],[116,88],[117,89],[114,90],[115,90],[113,1]],"exportedModulesMap":[[57,1],[164,2],[158,1],[60,3],[61,3],[63,4],[64,5],[65,6],[66,7],[67,8],[68,9],[69,10],[70,11],[71,12],[72,13],[73,13],[74,14],[75,15],[76,16],[77,17],[62,1],[109,1],[78,18],[79,19],[80,20],[110,21],[81,22],[82,23],[83,24],[84,25],[85,26],[86,27],[87,28],[88,29],[89,30],[90,31],[91,32],[92,33],[94,34],[93,35],[95,36],[96,37],[97,38],[98,39],[99,40],[100,41],[101,42],[102,43],[103,44],[104,45],[105,46],[106,47],[107,48],[108,49],[59,1],[121,50],[122,50],[120,50],[111,51],[167,1],[170,52],[165,1],[169,53],[168,1],[55,1],[56,1],[166,1],[119,1],[11,1],[12,1],[14,1],[13,1],[2,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[22,1],[3,1],[4,1],[26,1],[23,1],[24,1],[25,1],[27,1],[28,1],[29,1],[5,1],[30,1],[31,1],[32,1],[33,1],[6,1],[34,1],[35,1],[36,1],[37,1],[7,1],[38,1],[43,1],[44,1],[39,1],[40,1],[41,1],[42,1],[8,1],[48,1],[45,1],[46,1],[47,1],[49,1],[9,1],[50,1],[51,1],[52,1],[53,1],[1,1],[10,1],[54,1],[150,54],[148,55],[127,1],[136,56],[149,57],[126,58],[157,59],[128,1],[147,60],[131,61],[142,62],[138,63],[130,64],[132,65],[133,65],[137,66],[129,67],[140,68],[143,69],[144,70],[145,70],[146,71],[151,1],[125,1],[152,70],[153,72],[135,73],[139,74],[134,75],[154,76],[155,77],[141,78],[156,79],[163,83],[123,91],[159,92],[118,93],[124,92],[112,1],[116,88],[117,89],[114,90],[115,90],[113,1]],"semanticDiagnosticsPerFile":[57,164,158,60,61,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,62,109,78,79,80,110,81,82,83,84,85,86,87,88,89,90,91,92,94,93,95,96,97,98,99,100,101,102,103,104,105,106,107,108,59,121,122,120,111,167,170,165,169,168,55,56,166,119,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,34,35,36,37,7,38,43,44,39,40,41,42,8,48,45,46,47,49,9,50,51,52,53,1,10,54,150,148,127,136,149,126,157,128,147,131,142,138,130,132,133,137,129,140,143,144,145,146,151,125,152,153,135,139,134,154,155,141,156,160,162,58,163,161,123,159,118,124,112,116,117,114,115,113]},"version":"4.7.2"}
1
+ {"program":{"fileNames":["../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.esnext.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.pnpm/typescript@4.7.2/node_modules/typescript/lib/lib.esnext.intl.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","../source/help.ts","../../../node_modules/.pnpm/@types+prettier@2.6.3/node_modules/@types/prettier/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.0.14/node_modules/@types/prompts/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/emitter.d.ts","../../events/build/typescript/index.d.ts","../source/shared/prompts.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-yaml.d.ts","../source/shared.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","../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+react@17.0.45/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@17.0.45/node_modules/@types/react/index.d.ts","../../../node_modules/.pnpm/@types+react-dom@17.0.17/node_modules/@types/react-dom/index.d.ts"],"fileInfos":[{"version":"f5c28122bee592cfaf5c72ed7bcc47f453b79778ffa6e301f45d21a0970719d4","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9","746d62152361558ea6d6115cf0da4dd10ede041d14882ede3568bce5dc4b4f1f","3eb679a56cab01203a1ba7edeade937f6a2a4c718513b2cd930b579807fa9359","aea179452def8a6152f98f63b191b84e7cbd69b0e248c91e61fb2e52328abe8c",{"version":"3f149f903dd20dfeb7c80e228b659f0e436532de772469980dbd00702cc05cc1","affectsGlobalScope":true},{"version":"1272277fe7daa738e555eb6cc45ded42cc2d0f76c07294142283145d49e96186","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","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":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"cd483c056da900716879771893a3c9772b66c3c88f8943b4205aec738a94b1d0","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"6c55633c733c8378db65ac3da7a767c3cf2cf3057f0565a9124a16a3a2019e87","affectsGlobalScope":true},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true},{"version":"ff667ee99e5a28c3dc5063a3cfd4d3436699e3fb035d4451037da7f567da542a","affectsGlobalScope":true},{"version":"34478567f8a80171f88f2f30808beb7da15eac0538ae91282dd33dce928d98ed","affectsGlobalScope":true},{"version":"6ea9ab679ea030cf46c16a711a316078e9e02619ebaf07a7fcd16964aba88f2d","affectsGlobalScope":true},{"version":"6bda95ea27a59a276e46043b7065b55bd4b316c25e70e29b572958fa77565d43","affectsGlobalScope":true},{"version":"aedb8de1abb2ff1095c153854a6df7deae4a5709c37297f9d6e9948b6806fa66","affectsGlobalScope":true},{"version":"11ffe3c281f375fff9ffdde8bbec7669b4dd671905509079f866f2354a788064","affectsGlobalScope":true},{"version":"c37f8a49593a0030eecb51bbfa270e709bec9d79a6cc3bb851ef348d4e6b26f8","affectsGlobalScope":true},"5fd321c200cd8891db9851493872f01075a3f1032349ed37c458d7f67d8051e2","c8adda9f45d2f7ec9fb28c59859db32da6c2835f1fec96433e2729e5805fa46f","c5590caef278ad8ba2532ec93e29a32ac354dfb333277348acce18512891d3b2",{"version":"bede7c038ccfa6bfa01b54fe73bfd2e25f90d967f2ce48c8685bd5364b31c2b5","signature":"b1367a2230b500b09abfe9e14a79a1299f04dd06cc61bd30a30ceee5c0f29fdb"},"f1d8b21cdf08726021c8cce0cd6159486236cf1d633eeabbc435b5b2e5869c2e","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","5f7614d60b32dc66e5d665eafd10d7619eedca3a20f0e876e9ec73141735e364","8f0865a0135d2895246bfcd9cd4497c5028d3c14e4ba12f2cbec44a620b76d57","38e78ef3d6d2fb0d42f091cc4859ddcb65d12d5e7c7cd91079d2c93efef7fa1a","e38cda15170b7e69a52f92256f26ccfa79a43961286894f1b68380b11f9292e4","4d35e0a0f6dbe908b8b50ede27f8bf93b57f0a88db0288d079f7a8e8546af38b","896327d93bf0b44054c3abe6e7cf209fe5df9304cb869f804ad12915782226a2","f9a2742e3e409627f2062c6a64b9868dc406768997f32c14fe1edee9c9e64737",{"version":"102ff16a892c8d23f053b50c9e834abcd2e08ed837c8d27d94408d8e152a50fe","signature":"f44c34a7473a01adefa48239d23bbf2c92bceeaaae4efd541588a6af219c469d"},"c58eb580d75b517e64396a9aac843bad347f38481a1e64ca12998e92e12ceb08","88a3183e8e099a405861299a83ac855b99fef3985ed31e73016f61914b3a09ea","8592b3ee11de8e3d3257868571f52dfdcb973ec8af799c23681b41744934e3fd","f83148c8ce30f74fd32c8e2d1d0ea5b1c2517ce78b6271bffa09fb9c482ee35c",{"version":"58ed7b05016efc74420dd681618f985cfdb8ee7f61eaa2d1a6874a3e3e514aca","signature":"0b6725dbacfb0be8d44566782ecf708bd2cdf21d9ed9aee618310a905a4ac132"},{"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":"3768155c82635bbc6aabee1205f4afc86a2c3424f3f19071dd52dbe00242c5fb","signature":"a0fb1ca421ef9e52a14869f0070dfc14f61b82b0f364d2303281cb312d4f72e4"},{"version":"b2cd2efeea0e6bd40316ed3400035653c4afa67c7f88361912ec0d589aee7488","signature":"fcbc367deb7b8967c025cbf233324ce8d368630942cd80c4f01c0d0296d701c6"},{"version":"f051b1d8277bbfa0c5b215695ee5aeda25f72e741d55adcb7588f013d9f86bd0","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},"ae23745daebdb580f8c730f1c1fd666ea95cd87a859406cd74a6892625e51559","ed19da84b7dbf00952ad0b98ce5c194f1903bcf7c94d8103e8e0d63b271543ae",{"version":"bbdf156fea2fabed31a569445835aeedcc33643d404fcbaa54541f06c109df3f","affectsGlobalScope":true},"ba7617784f6b9aeac5e20c5eea869bbc3ef31b905f59c796b0fd401dae17c111","6a386ff939f180ae8ef064699d8b7b6e62bc2731a62d7fbf5e02589383838dea","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"a2037c0eea8dc883f41b8dcbc7e0f9b305f79989f4d310d77c9c321432a66411","affectsGlobalScope":true},"f02af84e409458d77baa712aaac7680635b47bd162a39367618ec744085f97be"],"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,"noUncheckedIndexedAccess":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./typescript","rootDir":"../source","skipLibCheck":true,"sourceMap":false,"strict":true,"target":99},"fileIdsList":[[103],[76,103,110],[60,103],[63,103],[64,69,103],[65,75,76,83,92,102,103],[65,66,75,83,103],[67,103],[68,69,76,84,103],[69,92,99,103],[70,72,75,83,103],[71,103],[72,73,103],[74,75,103],[75,103],[75,76,77,92,102,103],[75,76,77,92,103],[78,83,92,102,103],[75,76,78,79,83,92,99,102,103],[78,80,92,99,102,103],[60,61,62,63,64,65,66,67,68,69,70,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],[75,81,103],[82,102,103],[72,75,83,92,103],[84,103],[85,103],[63,86,103],[87,101,103,107],[88,103],[89,103],[75,90,103],[90,91,103,105],[75,92,93,94,103],[92,94,103],[92,93,103],[95,103],[96,103],[75,97,98,103],[97,98,103],[69,83,99,103],[100,103],[83,101,103],[64,78,89,102,103],[69,103],[92,103,104],[103,105],[103,106],[64,69,75,77,86,92,102,103,105,107],[92,103,108],[59,103],[92,103,110],[103,169],[103,165,166,167,168],[103,126,140,142,146,148,149],[103,126,130,132,133,135,138,140,142,147,149],[103,134,135,142,148],[103,148],[103,125],[103,125,126,130,132,133,134,135,138,139,140,142,146,147,148,150,151,152,153,154,155,156],[103,129,130,132,133,141,142,146,148],[103,135,142],[103,130,132,133,138,141,146,147,148],[103,129,130,132,133,135,136,137,141,142,146,147],[103,129,142,146],[103,129,130,131,135,138,141,142,146],[103,129,138],[103,141,142,148],[103,125,127,128,130,134,135,138,139,142,149],[103,126,130,142,146],[103,146],[103,143,144,145],[103,127,140,142,148,150],[103,134,138,140,142],[103,134,140],[103,130,132,133,135,136,140,141,142],[103,129,133,134,157],[103,129,130,132,134,135,138,141],[103,140,147,148],[103,130,132,133,138,142,147,148],[55,56,57,58,65,76,85,103,118,123,124,159],[55,56,57,58,103,117,123,160,161],[56,57,103],[103,162],[59,76,85,102,103,118,119,120,121,122],[85,103,123,157,158],[55,56,76,103,111,117],[85,103,123],[103,112],[103,112,113,114,115,116],[103,112,113],[59,118],[123],[55,111]],"referencedMap":[[57,1],[164,2],[158,1],[60,3],[61,3],[63,4],[64,5],[65,6],[66,7],[67,8],[68,9],[69,10],[70,11],[71,12],[72,13],[73,13],[74,14],[75,15],[76,16],[77,17],[62,1],[109,1],[78,18],[79,19],[80,20],[110,21],[81,22],[82,23],[83,24],[84,25],[85,26],[86,27],[87,28],[88,29],[89,30],[90,31],[91,32],[92,33],[94,34],[93,35],[95,36],[96,37],[97,38],[98,39],[99,40],[100,41],[101,42],[102,43],[103,44],[104,45],[105,46],[106,47],[107,48],[108,49],[59,1],[121,50],[122,50],[120,50],[111,51],[167,1],[170,52],[165,1],[169,53],[168,1],[55,1],[56,1],[166,1],[119,1],[11,1],[12,1],[14,1],[13,1],[2,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[22,1],[3,1],[4,1],[26,1],[23,1],[24,1],[25,1],[27,1],[28,1],[29,1],[5,1],[30,1],[31,1],[32,1],[33,1],[6,1],[34,1],[35,1],[36,1],[37,1],[7,1],[38,1],[43,1],[44,1],[39,1],[40,1],[41,1],[42,1],[8,1],[48,1],[45,1],[46,1],[47,1],[49,1],[9,1],[50,1],[51,1],[52,1],[53,1],[1,1],[10,1],[54,1],[150,54],[148,55],[127,1],[136,56],[149,57],[126,58],[157,59],[128,1],[147,60],[131,61],[142,62],[138,63],[130,64],[132,65],[133,65],[137,66],[129,67],[140,68],[143,69],[144,70],[145,70],[146,71],[151,1],[125,1],[152,70],[153,72],[135,73],[139,74],[134,75],[154,76],[155,77],[141,78],[156,79],[160,80],[162,81],[58,82],[163,83],[161,80],[123,84],[159,85],[118,86],[124,87],[112,1],[116,88],[117,89],[114,90],[115,90],[113,1]],"exportedModulesMap":[[57,1],[164,2],[158,1],[60,3],[61,3],[63,4],[64,5],[65,6],[66,7],[67,8],[68,9],[69,10],[70,11],[71,12],[72,13],[73,13],[74,14],[75,15],[76,16],[77,17],[62,1],[109,1],[78,18],[79,19],[80,20],[110,21],[81,22],[82,23],[83,24],[84,25],[85,26],[86,27],[87,28],[88,29],[89,30],[90,31],[91,32],[92,33],[94,34],[93,35],[95,36],[96,37],[97,38],[98,39],[99,40],[100,41],[101,42],[102,43],[103,44],[104,45],[105,46],[106,47],[107,48],[108,49],[59,1],[121,50],[122,50],[120,50],[111,51],[167,1],[170,52],[165,1],[169,53],[168,1],[55,1],[56,1],[166,1],[119,1],[11,1],[12,1],[14,1],[13,1],[2,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[22,1],[3,1],[4,1],[26,1],[23,1],[24,1],[25,1],[27,1],[28,1],[29,1],[5,1],[30,1],[31,1],[32,1],[33,1],[6,1],[34,1],[35,1],[36,1],[37,1],[7,1],[38,1],[43,1],[44,1],[39,1],[40,1],[41,1],[42,1],[8,1],[48,1],[45,1],[46,1],[47,1],[49,1],[9,1],[50,1],[51,1],[52,1],[53,1],[1,1],[10,1],[54,1],[150,54],[148,55],[127,1],[136,56],[149,57],[126,58],[157,59],[128,1],[147,60],[131,61],[142,62],[138,63],[130,64],[132,65],[133,65],[137,66],[129,67],[140,68],[143,69],[144,70],[145,70],[146,71],[151,1],[125,1],[152,70],[153,72],[135,73],[139,74],[134,75],[154,76],[155,77],[141,78],[156,79],[163,83],[123,91],[159,92],[118,93],[124,92],[112,1],[116,88],[117,89],[114,90],[115,90],[113,1]],"semanticDiagnosticsPerFile":[57,164,158,60,61,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,62,109,78,79,80,110,81,82,83,84,85,86,87,88,89,90,91,92,94,93,95,96,97,98,99,100,101,102,103,104,105,106,107,108,59,121,122,120,111,167,170,165,169,168,55,56,166,119,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,34,35,36,37,7,38,43,44,39,40,41,42,8,48,45,46,47,49,9,50,51,52,53,1,10,54,150,148,127,136,149,126,157,128,147,131,142,138,130,132,133,137,129,140,143,144,145,146,151,125,152,153,135,139,134,154,155,141,156,160,162,58,163,161,123,159,118,124,112,116,117,114,115,113]},"version":"4.7.2"}
@@ -1 +1 @@
1
- {"version":3,"file":"app.d.ts","sourceRoot":"","sources":["../../source/app.ts"],"names":[],"mappings":"AA8BA,wBAAsB,SAAS,kBAyP9B"}
1
+ {"version":3,"file":"app.d.ts","sourceRoot":"","sources":["../../source/app.ts"],"names":[],"mappings":"AA8BA,wBAAsB,SAAS,kBA+O9B"}
@@ -1 +1 @@
1
- {"version":3,"file":"package.d.ts","sourceRoot":"","sources":["../../source/package.ts"],"names":[],"mappings":"AA8BA,wBAAsB,aAAa,kBAsSlC"}
1
+ {"version":3,"file":"package.d.ts","sourceRoot":"","sources":["../../source/package.ts"],"names":[],"mappings":"AA8BA,wBAAsB,aAAa,kBAmUlC"}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@quilted/create",
3
3
  "type": "module",
4
- "version": "0.1.16",
4
+ "version": "0.1.19",
5
5
  "license": "MIT",
6
6
  "repository": {
7
7
  "type": "git",
package/source/app.ts CHANGED
@@ -142,16 +142,6 @@ export async function createApp() {
142
142
  workspacePackageJson.eslintConfig = projectPackageJson.eslintConfig;
143
143
  workspacePackageJson.browserslist = projectPackageJson.browserslist;
144
144
 
145
- const addBackToTSConfigInclude = new Set([
146
- 'quilt.project.ts',
147
- '*.test.ts',
148
- '*.test.tsx',
149
- ]);
150
-
151
- projectTSConfig.exclude = projectTSConfig.exclude.filter(
152
- (excluded: string) => !addBackToTSConfigInclude.has(excluded),
153
- );
154
-
155
145
  let quiltProject = await appTemplate.read('quilt.project.ts');
156
146
  quiltProject = quiltProject
157
147
  .replace('quiltApp', 'quiltWorkspace, quiltApp')
package/source/package.ts CHANGED
@@ -181,16 +181,6 @@ export async function createPackage() {
181
181
  registry: argv['--registry'],
182
182
  });
183
183
 
184
- const addBackToTSConfigInclude = new Set([
185
- 'quilt.project.ts',
186
- '*.test.ts',
187
- '*.test.tsx',
188
- ]);
189
-
190
- projectTSConfig.exclude = projectTSConfig.exclude.filter(
191
- (excluded: string) => !addBackToTSConfigInclude.has(excluded),
192
- );
193
-
194
184
  quiltProject = quiltProject
195
185
  .replace('quiltPackage', 'quiltWorkspace, quiltPackage')
196
186
  .replace('quiltPackage(', 'quiltWorkspace(), quiltPackage(');
@@ -238,6 +228,11 @@ export async function createPackage() {
238
228
  await packageTemplate.read('package.json'),
239
229
  );
240
230
 
231
+ projectPackageJson.repository.directory = path.relative(
232
+ directory,
233
+ packageDirectory,
234
+ );
235
+
241
236
  adjustPackageJson(projectPackageJson, {
242
237
  name: toValidPackageName(name),
243
238
  react: useReact,
@@ -252,6 +247,11 @@ export async function createPackage() {
252
247
  }),
253
248
  );
254
249
 
250
+ await outputRoot.write(
251
+ path.join(packageDirectory, 'quilt.project.ts'),
252
+ quiltProject,
253
+ );
254
+
255
255
  await Promise.all([
256
256
  addToTsConfig(packageDirectory, outputRoot),
257
257
  addToPackageManagerWorkspaces(
@@ -271,6 +271,33 @@ export async function createPackage() {
271
271
  console.log('Installed dependencies.');
272
272
  }
273
273
 
274
+ const packageJsonInstructions = stripIndent`
275
+ Your new package is ready to go! However, before you go too much further,
276
+ you should update the following fields in ${color.cyan(
277
+ relativeDirectoryForDisplay(
278
+ path.relative(
279
+ process.cwd(),
280
+ path.join(packageDirectory, 'package.json'),
281
+ ),
282
+ ),
283
+ )}:
284
+
285
+ - ${color.bold(
286
+ `"description"`,
287
+ )}, where you provide a description of what your package does
288
+ - ${color.bold(`"repository"`)}, where you should include the ${color.bold(
289
+ `"url"`,
290
+ )} of your project’s repo
291
+
292
+ Before you publish your package, you will also want to update the ${color.bold(
293
+ `"version"`,
294
+ )}
295
+ field in the package.json file.
296
+ `;
297
+
298
+ console.log();
299
+ console.log(packageJsonInstructions);
300
+
274
301
  const commands: string[] = [];
275
302
 
276
303
  if (!inWorkspace && directory !== process.cwd()) {
@@ -296,21 +323,23 @@ export async function createPackage() {
296
323
  );
297
324
  }
298
325
 
299
- const whatsNext = stripIndent`
300
- Your new package is ready to go! There’s just ${
301
- commands.length > 1 ? 'a few more steps' : 'one more step'
302
- } you’ll need to take
303
- in order to start building:
304
- `;
326
+ if (commands.length > 0) {
327
+ const whatsNext = stripIndent`
328
+ After you update your package.json, there’s ${
329
+ commands.length > 1 ? 'a few more steps' : 'one more step'
330
+ } you’ll need to take
331
+ in order to start building:
332
+ `;
305
333
 
306
- console.log();
307
- console.log(whatsNext);
308
- console.log();
309
- console.log(commands.map((command) => ` ${command}`).join('\n'));
334
+ console.log();
335
+ console.log(whatsNext);
336
+ console.log();
337
+ console.log(commands.map((command) => ` ${command}`).join('\n'));
338
+ }
310
339
 
311
340
  const followUp = stripIndent`
312
- Quilt can also help you build, test, lint, and type-check your new package.
313
- You can learn more about building packages with Quilt by reading the documentation:
341
+ Quilt can help you build, test, lint, and type-check your new package. You
342
+ can learn more about building packages with Quilt by reading the documentation:
314
343
  ${color.underline(
315
344
  color.magenta(
316
345
  'https://github.com/lemonmade/quilt/tree/main/documentation',
@@ -0,0 +1,12 @@
1
+ import {describe, it, expect} from '@quilted/quilt/testing';
2
+
3
+ import {mountWithAppContext} from '~/tests/mount';
4
+
5
+ import {Start} from './Start';
6
+
7
+ describe('<Start />', () => {
8
+ it('includes a welcome message', () => {
9
+ const start = mountWithAppContext(<Start />);
10
+ expect(start).toContainReactText('Hello world!');
11
+ });
12
+ });
@@ -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', () => {
10
+ const head = mountWithAppContext(<Head />);
11
+
12
+ expect(head).toContainReactComponent(Viewport, {
13
+ cover: true,
14
+ });
15
+ });
16
+
17
+ it('prevents search robots from indexing the application', () => {
18
+ const head = mountWithAppContext(<Head />);
19
+
20
+ expect(head).toContainReactComponent(SearchRobots, {
21
+ index: false,
22
+ follow: false,
23
+ });
24
+ });
25
+ });
@@ -0,0 +1 @@
1
+ export {Head} from './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', () => {
10
+ const http = 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', () => {
18
+ const http = mountWithAppContext(<Http />);
19
+
20
+ expect(http).toContainReactComponent(ContentSecurityPolicy, {
21
+ defaultSources: ["'self'"],
22
+ });
23
+ });
24
+ });
@@ -0,0 +1 @@
1
+ export {Http} from './Http';
@@ -0,0 +1,47 @@
1
+ import '@quilted/quilt/matchers';
2
+
3
+ import {
4
+ createMount,
5
+ TestRouter,
6
+ createTestRouter,
7
+ } from '@quilted/quilt/testing';
8
+
9
+ type Router = ReturnType<typeof createTestRouter>;
10
+
11
+ export {createTestRouter};
12
+
13
+ export interface MountOptions {
14
+ /**
15
+ * A custom router to use for this component test. You can use a
16
+ * custom router to simulate a particular URL, and you can spy on
17
+ * its navigation method to check that components navigate as
18
+ * you expect.
19
+ */
20
+ router?: Router;
21
+ }
22
+
23
+ export interface MountContext {
24
+ /**
25
+ * The router used for this component test.
26
+ */
27
+ router: Router;
28
+ }
29
+
30
+ export interface MountActions extends Record<string, never> {}
31
+
32
+ /**
33
+ * Mounts a component with test-friendly versions of all global
34
+ * context available to the application.
35
+ */
36
+ export const mountWithAppContext = createMount<
37
+ MountOptions,
38
+ MountContext,
39
+ MountActions
40
+ >({
41
+ context({router = createTestRouter()}) {
42
+ return {router};
43
+ },
44
+ render(element, {router}) {
45
+ return <TestRouter router={router}>{element}</TestRouter>;
46
+ },
47
+ });
@@ -3,10 +3,11 @@
3
3
  "compilerOptions": {
4
4
  "outDir": "build/typescript",
5
5
  "paths": {
6
- "~/shared/*": ["./shared/*"]
6
+ "~/shared/*": ["./shared/*"],
7
+ "~/tests/*": ["./tests/*"]
7
8
  }
8
9
  },
9
10
  "include": ["**/*"],
10
- "exclude": ["quilt.project.ts", "*.test.ts", "*.test.tsx", "build"],
11
+ "exclude": ["build"],
11
12
  "references": []
12
13
  }
@@ -4,6 +4,6 @@
4
4
  "outDir": "build/typescript"
5
5
  },
6
6
  "include": ["**/*"],
7
- "exclude": ["quilt.project.ts", "*.test.ts", "*.test.tsx", "build"],
7
+ "exclude": ["build"],
8
8
  "references": []
9
9
  }
@@ -17,6 +17,7 @@
17
17
  },
18
18
  "exports": {
19
19
  ".": {
20
+ "types": "./build/typescript/index.d.ts",
20
21
  "quilt:from-source": "./source/index.ts",
21
22
  "quilt:esnext": "./build/esnext/index.esnext",
22
23
  "import": "./build/esm/index.mjs",
@@ -41,6 +42,7 @@
41
42
  }
42
43
  },
43
44
  "devDependencies": {
45
+ "@quilted/testing": "^0.1.0",
44
46
  "react": "npm:@quilted/react@^17.0.0"
45
47
  },
46
48
  "eslintConfig": {
@@ -1 +1,3 @@
1
- export {};
1
+ export function run() {
2
+ return 'Have fun building!';
3
+ }
@@ -0,0 +1,8 @@
1
+ import {describe, it, expect} from '@quilted/testing';
2
+ import {run} from '..';
3
+
4
+ describe('package', () => {
5
+ it('returns something fun', () => {
6
+ expect(run()).toContain('fun');
7
+ });
8
+ });
@@ -5,6 +5,6 @@
5
5
  "outDir": "build/typescript"
6
6
  },
7
7
  "include": ["source"],
8
- "exclude": ["quilt.project.ts", "*.test.ts", "*.test.tsx"],
8
+ "exclude": [],
9
9
  "references": []
10
10
  }
@@ -16,7 +16,7 @@
16
16
  "@quilted/eslint-config": "^0.1.0",
17
17
  "@quilted/prettier": "^0.2.0",
18
18
  "@quilted/typescript": "^0.2.0",
19
- "typescript": "^4.6.0"
19
+ "typescript": "^4.7.0"
20
20
  },
21
21
  "prettier": "@quilted/prettier",
22
22
  "eslintConfig": {