From b4df2d8f4902ad754345a512cd46b03ef7df9654 Mon Sep 17 00:00:00 2001 From: Jeremy Clements <79224539+jeclrsg@users.noreply.github.com> Date: Mon, 3 Aug 2026 10:39:31 -0400 Subject: [PATCH] fix(dgrid-shim): use cross-env for the bundle script fixes an issue with the npm bundle script not working on windows Signed-off-by: Jeremy Clements <79224539+jeclrsg@users.noreply.github.com> --- packages/dgrid-shim/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/dgrid-shim/package.json b/packages/dgrid-shim/package.json index b2b0ed6bb6..0b16f162cd 100644 --- a/packages/dgrid-shim/package.json +++ b/packages/dgrid-shim/package.json @@ -17,7 +17,7 @@ "clean": "rimraf --glob lib* types types-3.4 dist *.tsbuildinfo", "compile": "tsc", "compile-watch": "npm run compile -- -w", - "bundle": "NODE_OPTIONS='-r ts-node/register/transpile-only' webpack --config webpack.config.ts", + "bundle": "cross-env NODE_OPTIONS=\"-r ts-node/register/transpile-only\" webpack --config webpack.config.ts", "bundle-watch": "npm run bundle -- -w", "minimize": "terser dist/index.js -c -m -o dist/index.min.js", "gen-legacy-types": "downlevel-dts ./types ./types-3.4",