@storm-software/workspace-tools 1.60.9 → 1.60.10

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,3 +1,15 @@
1
+ ## 1.60.10 (2024-02-22)
2
+
3
+
4
+ ### 🩹 Fixes
5
+
6
+ - **workspace-tools:** Resolve issue with multi-require imports ([711dca38](https://github.com/storm-software/storm-ops/commit/711dca38))
7
+
8
+
9
+ ### ❤️ Thank You
10
+
11
+ - Patrick Sullivan
12
+
1
13
  ## 1.60.9 (2024-02-22)
2
14
 
3
15
 
package/index.js CHANGED
@@ -493097,21 +493097,6 @@ ${externalDependencies.map((dep) => {
493097
493097
  return `name: ${dep.name}, node: ${dep.node}, outputs: ${dep.outputs}`;
493098
493098
  }).join("\n")}`
493099
493099
  );
493100
- const prettier = await Promise.resolve().then(() => (init_prettier(), prettier_exports));
493101
- const prettierOptions = {
493102
- plugins: ["prettier-plugin-packagejson"],
493103
- trailingComma: "none",
493104
- tabWidth: 2,
493105
- semi: true,
493106
- singleQuote: false,
493107
- quoteProps: "preserve",
493108
- insertPragma: false,
493109
- bracketSameLine: true,
493110
- printWidth: 80,
493111
- bracketSpacing: true,
493112
- arrowParens: "avoid",
493113
- endOfLine: "lf"
493114
- };
493115
493100
  let entryPoints = [];
493116
493101
  if (options8.entry) {
493117
493102
  entryPoints.push(options8.entry);
@@ -493253,13 +493238,7 @@ ${externalDependencies.map((dep) => {
493253
493238
  packageJson.repository.directory ??= projectRoot ? projectRoot : (0, import_devkit4.joinPathFragments)("packages", context.projectName);
493254
493239
  const packageJsonPath = (0, import_devkit4.joinPathFragments)(context.root, options8.outputPath, "package.json");
493255
493240
  writeDebug(config, `\u26A1 Writing package.json file to: ${packageJsonPath}`);
493256
- (0, import_node_fs3.writeFileSync)(
493257
- packageJsonPath,
493258
- await prettier.format(JSON.stringify(packageJson), {
493259
- ...prettierOptions,
493260
- parser: "json"
493261
- })
493262
- );
493241
+ (0, import_node_fs3.writeFileSync)(packageJsonPath, JSON.stringify(packageJson));
493263
493242
  } else {
493264
493243
  writeWarning(config, "Skipping writing to package.json file");
493265
493244
  }
@@ -493274,15 +493253,9 @@ ${externalDependencies.map((dep) => {
493274
493253
  files.map(
493275
493254
  async (file) => (0, import_fs_extra.writeFile)(
493276
493255
  file,
493277
- await prettier.format(
493278
- `${options8.banner ? options8.banner.startsWith("//") ? options8.banner : `// ${options8.banner}` : ""}
493256
+ `${options8.banner ? options8.banner.startsWith("//") ? options8.banner : `// ${options8.banner}` : ""}
493279
493257
 
493280
493258
  ${(0, import_node_fs3.readFileSync)(file, "utf-8")}`,
493281
- {
493282
- ...prettierOptions,
493283
- parser: "typescript"
493284
- }
493285
- ),
493286
493259
  "utf-8"
493287
493260
  )
493288
493261
  )