From b227bca708c111a8429681210d507b2d9d1113b2 Mon Sep 17 00:00:00 2001 From: Vikram Kalta Date: Mon, 14 Oct 2024 20:38:50 +0100 Subject: [PATCH] fix: npm script fix --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 050ff712..d27afe47 100644 --- a/package.json +++ b/package.json @@ -25,7 +25,7 @@ "build:es5": "BABEL_ENV=es5 babel lib -d dist/es5", "build:es-modules": "BABEL_ENV=es-modules babel lib -d dist/es-modules", "buildall": "npm run buildnode && npm run buildweb && npm run buildreactnative && npm run buildnativescript", - "buildnode": "webpack --config webpack/webpack.node.js --mode development", + "buildnode": "webpack --config webpack/webpack.node.js --mode production", "buildreactnative": "webpack --config webpack/webpack.react-native.js --mode production", "buildnativescript": "webpack --config webpack/webpack.nativescript.js --mode production", "buildweb": "webpack --config webpack/webpack.web.js --mode production",