@storm-software/workspace-tools 1.6.45 → 1.6.46

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,11 @@
1
+ ## [1.6.45](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.6.44...workspace-tools-v1.6.45) (2023-11-15)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **workspace-tools:** Resolved issue with prettier config import ([4e2c026](https://github.com/storm-software/storm-ops/commit/4e2c026ca16072a60cbf34ece52e836ed6c0c183))
7
+ * **workspace-tools:** Updated tsup build to check for package.json in outDir via patch ([65afb51](https://github.com/storm-software/storm-ops/commit/65afb51dbcd4e68ebf44f643a9f683e66564b18c))
8
+
1
9
  ## [1.6.44](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.6.43...workspace-tools-v1.6.44) (2023-11-15)
2
10
 
3
11
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/workspace-tools",
3
- "version": "1.6.45",
3
+ "version": "1.6.46",
4
4
  "private": false,
5
5
  "description": "⚡ A Nx plugin package that contains various executors and generators used in a Storm workspaces.",
6
6
  "keywords": [
@@ -283,18 +283,19 @@ async function runExecutor(options, context) {
283
283
  (0, import_fs.writeFileSync)(
284
284
  packageJsonPath,
285
285
  await (0, import_prettier.format)(JSON.stringify(packageJson), {
286
- "plugins": ["prettier-plugin-packagejson"],
287
- "trailingComma": "none",
288
- "tabWidth": 2,
289
- "semi": true,
290
- "singleQuote": false,
291
- "quoteProps": "preserve",
292
- "insertPragma": false,
293
- "bracketSameLine": true,
294
- "printWidth": 80,
295
- "bracketSpacing": true,
296
- "arrowParens": "avoid",
297
- "endOfLine": "lf"
286
+ plugins: ["prettier-plugin-packagejson"],
287
+ parser: "json",
288
+ trailingComma: "none",
289
+ tabWidth: 2,
290
+ semi: true,
291
+ singleQuote: false,
292
+ quoteProps: "preserve",
293
+ insertPragma: false,
294
+ bracketSameLine: true,
295
+ printWidth: 80,
296
+ bracketSpacing: true,
297
+ arrowParens: "avoid",
298
+ endOfLine: "lf"
298
299
  })
299
300
  );
300
301
  console.log("Getting Tsup build config");