@quilted/create 0.1.14 → 0.1.15

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.
@@ -124,7 +124,7 @@ async function format(content, {
124
124
  }) {
125
125
  const [{
126
126
  format
127
- }] = await Promise.all([import('./index3.mjs').then(function (n) { return n.i; })]);
127
+ }] = await Promise.all([import('./standalone.mjs').then(function (n) { return n.s; })]);
128
128
  return format(content, {
129
129
  arrowParens: 'always',
130
130
  bracketSpacing: false,
@@ -219,7 +219,7 @@ async function addToPackageManagerWorkspaces(directory, output, packageManager)
219
219
  const {
220
220
  parse,
221
221
  stringify
222
- } = await import('./index4.mjs').then(function (n) { return n.i; });
222
+ } = await import('./index3.mjs').then(function (n) { return n.i; });
223
223
  const workspaceYaml = parse(await output.read('pnpm-workspace.yaml'));
224
224
  workspaceYaml.packages = await addToWorkspaces(relative(output.root, directory), workspaceYaml.packages ?? []);
225
225
  await output.write('pnpm-workspace.yaml', await format(stringify(workspaceYaml), {