@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
|
@@ -124,7 +124,7 @@ async function format(content, {
|
|
|
124
124
|
}) {
|
|
125
125
|
const [{
|
|
126
126
|
format
|
|
127
|
-
}] = await Promise.all([import('./
|
|
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('./
|
|
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), {
|