fix: use UUIDv4 for message id to avoid integer overflow
[poolifier.git] / rollup.config.mjs
index b1197e910e1cc524ab56265fd436579dbee6914f..44e837d396ab273331cbdb02af9d184123bfd1dd 100644 (file)
@@ -26,7 +26,6 @@ export default {
       ...(isDevelopmentBuild ? { dir: 'lib' } : { file: 'lib/index.mjs' }),
       format: 'esm',
       sourcemap: !!isDevelopmentBuild,
-
       ...(isDevelopmentBuild && {
         entryFileNames: '[name].mjs',
         preserveModules: true,
@@ -46,6 +45,6 @@ export default {
       targets: ['lib/*']
     }),
     isAnalyze && analyze(),
-    isDocumentation && command('npm run typedoc')
+    isDocumentation && command('pnpm run typedoc')
   ]
 }