Socket
Socket
Sign inDemoInstall

maxa-cli

Package Overview
Dependencies
523
Maintainers
1
Versions
108
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.1.2 to 1.1.3

12

bin/Configrations.js

@@ -5,3 +5,2 @@ const MiniCssExtractPlugin = require("mini-css-extract-plugin");

const path = require("path");
const WebpackObfuscator = require("webpack-obfuscator");
const TerserPlugin = require("terser-webpack-plugin");

@@ -18,3 +17,6 @@

output: {
path: path.resolve("./", isDevelopment === true ? "/app" : "/" + outDir),
path: path.resolve(
"./",
isDevelopment === true ? "./app" : "./" + outDir
),
filename: "static/js/[name]." + fileName + ".js",

@@ -117,5 +119,2 @@ chunkFilename: "[id]." + fileName + ".js",

optimization: {
runtimeChunk: {
name: entrypoint => `runtime-${entrypoint.name}`,
},
minimize: true,

@@ -146,5 +145,2 @@ minimizer: [

],
splitChunks: {
chunks: "all",
},
},

@@ -151,0 +147,0 @@ };

const { DEV_SERVER, config } = require("./Configrations.js");
const { _Info,_Error } = require("./Shared");
const webpack = require("webpack");
const WebpackDevServer = require("webpack-dev-server");
const WebpackObfuscator = require("webpack-obfuscator");

@@ -7,6 +10,5 @@ function start(port) {

...config(true),
...DEV_SERVER,
devServer:{...DEV_SERVER},
watch: true,
};
const compiler = webpack(devConfig);

@@ -63,5 +65,5 @@ const server = new WebpackDevServer(

);
}, 2000);
}, 1000);
});
}, 5000);
}, 3000);
} else {

@@ -76,3 +78,3 @@ fs.mkdir(buildDir, () => {

});
}, 2000);
}, 1000);
});

@@ -79,0 +81,0 @@ }

{
"name": "maxa-cli",
"version": "1.1.2",
"version": "1.1.3",
"description": "The Official Maxa CLI Tools to build, deploy and manage maxa-based apps",

@@ -5,0 +5,0 @@ "main": "bin/Index.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc