@storm-software/workspace-tools 1.60.5 → 1.60.7

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,27 @@
1
+ ## 1.60.7 (2024-02-22)
2
+
3
+
4
+ ### 🩹 Fixes
5
+
6
+ - **workspace-tools:** Import prettier dynamically to ensure loading ([46dd5ea7](https://github.com/storm-software/storm-ops/commit/46dd5ea7))
7
+
8
+
9
+ ### ❤️ Thank You
10
+
11
+ - Patrick Sullivan
12
+
13
+ ## 1.60.6 (2024-02-22)
14
+
15
+
16
+ ### 🩹 Fixes
17
+
18
+ - **workspace-tools:** Resolve issue with excluded packages ([198e115a](https://github.com/storm-software/storm-ops/commit/198e115a))
19
+
20
+
21
+ ### ❤️ Thank You
22
+
23
+ - Patrick Sullivan
24
+
1
25
  ## 1.60.5 (2024-02-21)
2
26
 
3
27
 
@@ -492908,7 +492908,6 @@ glob.glob = glob;
492908
492908
 
492909
492909
  // packages/workspace-tools/src/executors/tsup/executor.ts
492910
492910
  var import_fileutils = require("nx/src/utils/fileutils.js");
492911
- init_prettier();
492912
492911
 
492913
492912
  // packages/workspace-tools/src/utils/get-project-configurations.ts
492914
492913
  var import_retrieve_workspace_files = require("nx/src/project-graph/utils/retrieve-workspace-files");
@@ -493098,6 +493097,7 @@ ${externalDependencies.map((dep) => {
493098
493097
  return `name: ${dep.name}, node: ${dep.node}, outputs: ${dep.outputs}`;
493099
493098
  }).join("\n")}`
493100
493099
  );
493100
+ const prettier = await Promise.resolve().then(() => (init_prettier(), prettier_exports));
493101
493101
  const prettierOptions = {
493102
493102
  plugins: ["prettier-plugin-packagejson"],
493103
493103
  trailingComma: "none",
@@ -493255,7 +493255,7 @@ ${externalDependencies.map((dep) => {
493255
493255
  writeDebug(config, `\u26A1 Writing package.json file to: ${packageJsonPath}`);
493256
493256
  (0, import_node_fs3.writeFileSync)(
493257
493257
  packageJsonPath,
493258
- await format2(JSON.stringify(packageJson), {
493258
+ await prettier.format(JSON.stringify(packageJson), {
493259
493259
  ...prettierOptions,
493260
493260
  parser: "json"
493261
493261
  })
@@ -493274,7 +493274,7 @@ ${externalDependencies.map((dep) => {
493274
493274
  files.map(
493275
493275
  async (file) => (0, import_fs_extra.writeFile)(
493276
493276
  file,
493277
- await format2(
493277
+ await prettier.format(
493278
493278
  `${options8.banner ? options8.banner.startsWith("//") ? options8.banner : `// ${options8.banner}` : ""}
493279
493279
 
493280
493280
  ${(0, import_node_fs3.readFileSync)(file, "utf-8")}`,