@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.
- package/CHANGELOG.md +6 -0
- package/build/cjs/index3.cjs +7578 -49784
- package/build/cjs/package-manager.cjs +2 -2
- package/build/cjs/standalone.cjs +151 -0
- package/build/esm/index3.mjs +7578 -49773
- package/build/esm/package-manager.mjs +2 -2
- package/build/esm/standalone.mjs +149 -0
- package/build/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/source/shared.ts +1 -1
- package/build/cjs/index4.cjs +0 -7854
- package/build/esm/index4.mjs +0 -7852
|
@@ -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('./
|
|
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('./
|
|
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), {
|