@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.
@@ -146,7 +146,7 @@ async function format(content, {
146
146
  }) {
147
147
  const [{
148
148
  format
149
- }] = await Promise.all([Promise.resolve().then(function () { return require('./index3.cjs'); }).then(function (n) { return n.index; })]);
149
+ }] = await Promise.all([Promise.resolve().then(function () { return require('./standalone.cjs'); }).then(function (n) { return n.standalone; })]);
150
150
  return format(content, {
151
151
  arrowParens: 'always',
152
152
  bracketSpacing: false,
@@ -241,7 +241,7 @@ async function addToPackageManagerWorkspaces(directory, output, packageManager)
241
241
  const {
242
242
  parse,
243
243
  stringify
244
- } = await Promise.resolve().then(function () { return require('./index4.cjs'); }).then(function (n) { return n.index; });
244
+ } = await Promise.resolve().then(function () { return require('./index3.cjs'); }).then(function (n) { return n.index; });
245
245
  const workspaceYaml = parse(await output.read('pnpm-workspace.yaml'));
246
246
  workspaceYaml.packages = await addToWorkspaces(path.relative(output.root, directory), workspaceYaml.packages ?? []);
247
247
  await output.write('pnpm-workspace.yaml', await format(stringify(workspaceYaml), {