@storm-software/workspace-tools 1.66.14 → 1.66.16

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.66.16 (2024-03-28)
2
+
3
+
4
+ ### 🩹 Fixes
5
+
6
+ - **workspace-tools:** Mark the `axios` dependency as external ([389dfbd9](https://github.com/storm-software/storm-ops/commit/389dfbd9))
7
+
8
+
9
+ ### ❤️ Thank You
10
+
11
+ - Patrick Sullivan
12
+
13
+ ## 1.66.15 (2024-03-28)
14
+
15
+
16
+ ### 🩹 Fixes
17
+
18
+ - **git-tools:** Resolve issue with module type compiler options ([5c4a20b7](https://github.com/storm-software/storm-ops/commit/5c4a20b7))
19
+
20
+
21
+ ### ❤️ Thank You
22
+
23
+ - Patrick Sullivan
24
+
1
25
  ## 1.66.14 (2024-03-28)
2
26
 
3
27
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/workspace-tools",
3
- "version": "1.66.14",
3
+ "version": "1.66.16",
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": [
package/project.json CHANGED
@@ -51,7 +51,8 @@
51
51
  },
52
52
  "external": [
53
53
  "nx",
54
- "@storm-software/*"
54
+ "@storm-software/*",
55
+ "axios"
55
56
  ],
56
57
  "assets": [
57
58
  {
@@ -115,4 +116,4 @@
115
116
  "type:util",
116
117
  "scope:tools"
117
118
  ]
118
- }
119
+ }
@@ -4,7 +4,7 @@ import { readFileSync } from "node:fs";
4
4
  import { parseCargoToml } from "../../utils/toml";
5
5
  import type { CargoPublishExecutorSchema } from "./schema.d";
6
6
  import { encode } from "node:querystring";
7
- const axios = require("axios");
7
+ import axios from "axios";
8
8
 
9
9
  const LARGE_BUFFER = 1024 * 1000000;
10
10