build: revert commit 211b4eb
authorJérôme Benoit <jerome.benoit@piment-noir.org>
Sun, 26 Nov 2023 14:50:13 +0000 (15:50 +0100)
committerJérôme Benoit <jerome.benoit@piment-noir.org>
Sun, 26 Nov 2023 14:50:13 +0000 (15:50 +0100)
Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
package.json
rollup.config.mjs

index dcaadc2b50848fd0095c3f0e39c8014ec0d896b0..62477b59027efd06c4cacfbd285b8f7b94844c7f 100644 (file)
@@ -22,7 +22,7 @@
     "benchmark": "pnpm build && node --max-old-space-size=4096 --enable-source-maps benchmarks/internal/bench.mjs",
     "benchmark:prod": "pnpm build:prod && node --max-old-space-size=4096 --enable-source-maps benchmarks/internal/bench.mjs",
     "benchmark:debug": "pnpm build && node --max-old-space-size=4096 --enable-source-maps --inspect benchmarks/internal/bench.mjs",
-    "test": "pnpm build && c8 mocha 'tests/**/*.test.mjs'",
+    "test": "pnpm build --environment SOURCEMAP:false && c8 mocha 'tests/**/*.test.mjs'",
     "test:debug": "pnpm build && mocha --no-parallel --inspect 'tests/**/*.test.mjs'",
     "coverage": "c8 report --reporter=lcov",
     "coverage:html": "c8 report --reporter=html",
index e3af7e1d8af9657fe50be3750b7aa4acd8671a25..d4af3f3ff624310388649f22934a60e7cf867d18 100644 (file)
@@ -24,6 +24,7 @@ const availableParallelism = () => {
 const isDevelopmentBuild = env.BUILD === 'development'
 const isAnalyzeBuild = env.ANALYZE
 const isDocumentationBuild = env.DOCUMENTATION
+const sourcemap = env.SOURCEMAP !== 'false'
 
 const maxWorkers = Math.floor(availableParallelism() / 2)
 
@@ -34,7 +35,6 @@ export default defineConfig([
     output: [
       {
         format: 'cjs',
-        sourcemap: true,
         ...(isDevelopmentBuild && {
           dir: './lib',
           preserveModules: true,
@@ -43,11 +43,13 @@ export default defineConfig([
         ...(!isDevelopmentBuild && {
           file: './lib/index.js',
           plugins: [terser({ maxWorkers })]
+        }),
+        ...(sourcemap && {
+          sourcemap
         })
       },
       {
         format: 'esm',
-        sourcemap: true,
         ...(isDevelopmentBuild && {
           dir: './lib',
           entryFileNames: '[name].mjs',
@@ -58,6 +60,9 @@ export default defineConfig([
         ...(!isDevelopmentBuild && {
           file: './lib/index.mjs',
           plugins: [terser({ maxWorkers })]
+        }),
+        ...(sourcemap && {
+          sourcemap
         })
       }
     ],
@@ -66,7 +71,7 @@ export default defineConfig([
       typescript({
         tsconfig: './tsconfig.build.json',
         compilerOptions: {
-          sourceMap: true
+          sourceMap: sourcemap
         }
       }),
       del({