From: Chris Duncan Date: Mon, 15 Sep 2025 21:01:11 +0000 (-0700) Subject: Move all esbuild artifacts into their own directory. X-Git-Tag: v0.10.5~14^2~14 X-Git-Url: https://git.codecow.com/?a=commitdiff_plain;h=6de06b7e426dd7ec4e1c120029e141d56d4fef5c;p=libnemo.git Move all esbuild artifacts into their own directory. --- diff --git a/polyfill/buffer.mjs b/esbuild/buffer.mjs similarity index 100% rename from polyfill/buffer.mjs rename to esbuild/buffer.mjs diff --git a/esbuild-prod.mjs b/esbuild/esbuild-prod.mjs similarity index 100% rename from esbuild-prod.mjs rename to esbuild/esbuild-prod.mjs diff --git a/esbuild.mjs b/esbuild/esbuild.mjs similarity index 100% rename from esbuild.mjs rename to esbuild/esbuild.mjs diff --git a/polyfill/fake-indexeddb.mjs b/esbuild/fake-indexeddb.mjs similarity index 100% rename from polyfill/fake-indexeddb.mjs rename to esbuild/fake-indexeddb.mjs diff --git a/package.json b/package.json index 1984fea..d07cc6c 100644 --- a/package.json +++ b/package.json @@ -44,8 +44,8 @@ }, "scripts": { "clean": "rm -rf dist types && tsc", - "build": "npm run clean && node esbuild.mjs", - "build:prod": "npm run clean && node esbuild-prod.mjs", + "build": "npm run clean && node esbuild/esbuild.mjs", + "build:prod": "npm run clean && node esbuild/esbuild-prod.mjs", "prepublishOnly": "npm run test:prod", "reinstall": "rm -rf node_modules package-lock.json && npm cache clean --force && npm i", "test": "npm run build && npm run test:node",