@storm-software/workspace-tools 1.62.23 → 1.62.24
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 +12 -0
- package/assets/cjs_shims.js +2 -3
- package/assets/esm_shims.js +2 -2
- package/index.js +3 -3
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/executors/tsup-browser/executor.js +1 -1
- package/src/executors/tsup-neutral/executor.js +1 -1
- package/src/executors/tsup-node/executor.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## 1.62.24 (2024-03-01)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### 🩹 Fixes
|
|
5
|
+
|
|
6
|
+
- **workspace-tools:** Ensure invalid env are not provided to build ([e6921ea7](https://github.com/storm-software/storm-ops/commit/e6921ea7))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### ❤️ Thank You
|
|
10
|
+
|
|
11
|
+
- Patrick Sullivan
|
|
12
|
+
|
|
1
13
|
## 1.62.23 (2024-03-01)
|
|
2
14
|
|
|
3
15
|
|
package/assets/cjs_shims.js
CHANGED
|
@@ -5,8 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
const getImportMetaUrl = () =>
|
|
7
7
|
typeof document === "undefined"
|
|
8
|
-
? new URL(
|
|
9
|
-
:
|
|
10
|
-
new URL("main.js", document.baseURI).href;
|
|
8
|
+
? new URL(`file:${__filename}`).href
|
|
9
|
+
: document.currentScript?.src || new URL("main.js", document.baseURI).href;
|
|
11
10
|
|
|
12
11
|
export const importMetaUrl = /* @__PURE__ */ getImportMetaUrl();
|
package/assets/esm_shims.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// Shim globals in esm bundle
|
|
2
|
-
import path from "path";
|
|
3
|
-
import { fileURLToPath } from "url";
|
|
2
|
+
import path from "node:path";
|
|
3
|
+
import { fileURLToPath } from "node:url";
|
|
4
4
|
|
|
5
5
|
const getFilename = () => fileURLToPath(import.meta.url);
|
|
6
6
|
const getDirname = () => path.dirname(getFilename());
|
package/index.js
CHANGED
|
@@ -481432,7 +481432,7 @@ var neutralConfig = ({
|
|
|
481432
481432
|
external,
|
|
481433
481433
|
banner = {},
|
|
481434
481434
|
platform = "neutral",
|
|
481435
|
-
verbose =
|
|
481435
|
+
verbose = true,
|
|
481436
481436
|
metafile = true,
|
|
481437
481437
|
skipNativeModulesPlugin = false,
|
|
481438
481438
|
define: define2,
|
|
@@ -481562,7 +481562,7 @@ function nodeConfig({
|
|
|
481562
481562
|
external,
|
|
481563
481563
|
banner = {},
|
|
481564
481564
|
platform = "node",
|
|
481565
|
-
verbose =
|
|
481565
|
+
verbose = true,
|
|
481566
481566
|
apiReport = true,
|
|
481567
481567
|
docModel = true,
|
|
481568
481568
|
tsdocMetadata = true,
|
|
@@ -481691,7 +481691,7 @@ var browserConfig = ({
|
|
|
481691
481691
|
external,
|
|
481692
481692
|
banner = {},
|
|
481693
481693
|
platform = "browser",
|
|
481694
|
-
verbose =
|
|
481694
|
+
verbose = true,
|
|
481695
481695
|
metafile = true,
|
|
481696
481696
|
skipNativeModulesPlugin = false,
|
|
481697
481697
|
define: define2,
|