@delance/builder 0.3.5 → 0.3.6

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/dist/cli.js CHANGED
@@ -94,7 +94,7 @@ if (!process.isBun) {
94
94
  async function main(argv2) {
95
95
  debug.enable("*,-babel");
96
96
  const cwd = argv2.pop();
97
- for await (const x of new Bun.Glob("{!browser,*}.bundle.js").scan({ absolute: true, cwd })) {
97
+ for await (const x of new Bun.Glob("{!browser}*.bundle.js").scan({ absolute: true, cwd })) {
98
98
  console.group(`${magenta("> build")} ${dim(x)}`);
99
99
  const label = `${bgBlue(white(" Processed "))} ${dim(x)}`;
100
100
  console.time(label);
package/dist/index.js CHANGED
@@ -5014,7 +5014,7 @@ async function transform5(ast2) {
5014
5014
  const quickjs = await getQuickJS();
5015
5015
  await applyTransformAsync(ast2, deobfuscate_default, async (code) => quickjs.evalCode(code, {
5016
5016
  shouldInterrupt: shouldInterruptAfterDeadline(Date.now() + 2000),
5017
- memoryLimitBytes: 4 * 1024 * 1024
5017
+ memoryLimitBytes: 2 * 1024 * 1024
5018
5018
  }));
5019
5019
  applyTransform2(ast2, unminify_default);
5020
5020
  applyTransform2(ast2, merge_object_assignments_default);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@delance/builder",
3
3
  "type": "module",
4
- "version": "0.3.5",
4
+ "version": "0.3.6",
5
5
  "description": "A spear to the Python language server built with black magic",
6
6
  "author": "mochaaP <npm@mochaa.ws>",
7
7
  "license": "0BSD",
@@ -54,7 +54,7 @@
54
54
  },
55
55
  "scripts": {
56
56
  "build": "bun build.ts",
57
- "build:minify": "bun run build --minify --entry-naming [dir]/[name].min.[ext]",
57
+ "build:minify": "bun run build --minify",
58
58
  "build:webcrack": "tsc -p ./tsconfig.webcrack.json || :",
59
59
  "check": "tsc; bun run lint",
60
60
  "lint": "eslint .",