@storm-software/esbuild 0.26.13 → 0.27.0

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/README.md CHANGED
@@ -21,7 +21,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
21
21
 
22
22
  <h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
23
23
 
24
- [![Version](https://img.shields.io/badge/version-0.26.12-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
24
+ [![Version](https://img.shields.io/badge/version-0.26.13-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
25
25
 
26
26
  <!-- prettier-ignore-start -->
27
27
  <!-- markdownlint-disable -->
package/bin/esbuild.cjs CHANGED
@@ -862,10 +862,11 @@ var resolveOptions = /* @__PURE__ */ __name(async (userOptions) => {
862
862
  ...options.define,
863
863
  ...Object.keys(env || {}).reduce((res, key) => {
864
864
  const value = JSON.stringify(env[key]);
865
+ const safeKey = key.replaceAll("(", "").replaceAll(")", "");
865
866
  return {
866
867
  ...res,
867
- [`process.env.${key}`]: value,
868
- [`import.meta.env.${key}`]: value
868
+ [`process.env.${safeKey}`]: value,
869
+ [`import.meta.env.${safeKey}`]: value
869
870
  };
870
871
  }, {})
871
872
  },
package/dist/build.cjs CHANGED
@@ -1,7 +1,7 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
3
 
4
- var _chunkH7G4L4A7cjs = require('./chunk-H7G4L4A7.cjs');
4
+ var _chunkPLWHYEXLcjs = require('./chunk-PLWHYEXL.cjs');
5
5
  require('./chunk-DITM26C7.cjs');
6
6
  require('./chunk-5F7O7BRG.cjs');
7
7
  require('./chunk-S6M44SSZ.cjs');
@@ -18,4 +18,4 @@ require('./chunk-BGYQAVKQ.cjs');
18
18
 
19
19
 
20
20
 
21
- exports.build = _chunkH7G4L4A7cjs.build; exports.cleanOutputPath = _chunkH7G4L4A7cjs.cleanOutputPath;
21
+ exports.build = _chunkPLWHYEXLcjs.build; exports.cleanOutputPath = _chunkPLWHYEXLcjs.cleanOutputPath;
package/dist/build.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  build,
3
3
  cleanOutputPath
4
- } from "./chunk-KFFQSANO.js";
4
+ } from "./chunk-ZKTWGDCF.js";
5
5
  import "./chunk-TUAAYWUJ.js";
6
6
  import "./chunk-VZIK4SOK.js";
7
7
  import "./chunk-T5272PC2.js";
@@ -359,10 +359,11 @@ var resolveOptions = /* @__PURE__ */ _chunkBGYQAVKQcjs.__name.call(void 0, async
359
359
  ...options.define,
360
360
  ...Object.keys(env || {}).reduce((res, key) => {
361
361
  const value = JSON.stringify(env[key]);
362
+ const safeKey = key.replaceAll("(", "").replaceAll(")", "");
362
363
  return {
363
364
  ...res,
364
- [`process.env.${key}`]: value,
365
- [`import.meta.env.${key}`]: value
365
+ [`process.env.${safeKey}`]: value,
366
+ [`import.meta.env.${safeKey}`]: value
366
367
  };
367
368
  }, {})
368
369
  },
@@ -359,10 +359,11 @@ var resolveOptions = /* @__PURE__ */ __name(async (userOptions) => {
359
359
  ...options.define,
360
360
  ...Object.keys(env || {}).reduce((res, key) => {
361
361
  const value = JSON.stringify(env[key]);
362
+ const safeKey = key.replaceAll("(", "").replaceAll(")", "");
362
363
  return {
363
364
  ...res,
364
- [`process.env.${key}`]: value,
365
- [`import.meta.env.${key}`]: value
365
+ [`process.env.${safeKey}`]: value,
366
+ [`import.meta.env.${safeKey}`]: value
366
367
  };
367
368
  }, {})
368
369
  },
package/dist/index.cjs CHANGED
@@ -7,7 +7,7 @@
7
7
 
8
8
 
9
9
 
10
- var _chunkH7G4L4A7cjs = require('./chunk-H7G4L4A7.cjs');
10
+ var _chunkPLWHYEXLcjs = require('./chunk-PLWHYEXL.cjs');
11
11
 
12
12
 
13
13
 
@@ -41,4 +41,4 @@ require('./chunk-BGYQAVKQ.cjs');
41
41
 
42
42
 
43
43
 
44
- exports.DEFAULT_BUILD_OPTIONS = _chunk5F7O7BRGcjs.DEFAULT_BUILD_OPTIONS; exports.Filter = _chunkH7G4L4A7cjs.Filter; exports.Mapper = _chunkH7G4L4A7cjs.Mapper; exports.build = _chunkH7G4L4A7cjs.build; exports.clean = _chunkDITM26C7cjs.clean; exports.cleanDirectories = _chunkDITM26C7cjs.cleanDirectories; exports.cleanOutputPath = _chunkH7G4L4A7cjs.cleanOutputPath; exports.getDefaultBuildPlugins = _chunk5F7O7BRGcjs.getDefaultBuildPlugins; exports.handle = _chunkH7G4L4A7cjs.handle; exports.pipe = _chunkH7G4L4A7cjs.pipe; exports.skip = _chunkH7G4L4A7cjs.skip; exports.transduce = _chunkH7G4L4A7cjs.transduce;
44
+ exports.DEFAULT_BUILD_OPTIONS = _chunk5F7O7BRGcjs.DEFAULT_BUILD_OPTIONS; exports.Filter = _chunkPLWHYEXLcjs.Filter; exports.Mapper = _chunkPLWHYEXLcjs.Mapper; exports.build = _chunkPLWHYEXLcjs.build; exports.clean = _chunkDITM26C7cjs.clean; exports.cleanDirectories = _chunkDITM26C7cjs.cleanDirectories; exports.cleanOutputPath = _chunkPLWHYEXLcjs.cleanOutputPath; exports.getDefaultBuildPlugins = _chunk5F7O7BRGcjs.getDefaultBuildPlugins; exports.handle = _chunkPLWHYEXLcjs.handle; exports.pipe = _chunkPLWHYEXLcjs.pipe; exports.skip = _chunkPLWHYEXLcjs.skip; exports.transduce = _chunkPLWHYEXLcjs.transduce;
package/dist/index.js CHANGED
@@ -7,7 +7,7 @@ import {
7
7
  pipe,
8
8
  skip,
9
9
  transduce
10
- } from "./chunk-KFFQSANO.js";
10
+ } from "./chunk-ZKTWGDCF.js";
11
11
  import {
12
12
  clean,
13
13
  cleanDirectories
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/esbuild",
3
- "version": "0.26.13",
3
+ "version": "0.27.0",
4
4
  "type": "module",
5
5
  "description": "A package containing `esbuild` utilities for building Storm Software libraries and applications",
6
6
  "repository": {
@@ -169,8 +169,8 @@
169
169
  "@nx/devkit": "^20.3.1",
170
170
  "@nx/js": "^20.3.1",
171
171
  "@storm-software/build-tools": "0.140.5",
172
- "@storm-software/config": "1.103.5",
173
- "@storm-software/config-tools": "1.155.10",
172
+ "@storm-software/config": "1.104.0",
173
+ "@storm-software/config-tools": "1.156.0",
174
174
  "@types/node": "^22.10.2",
175
175
  "defu": "6.1.4",
176
176
  "esbuild": "^0.24.0",