Skip to content

0.1.20

Compare
Choose a tag to compare
@lucasferreiralimax lucasferreiralimax released this 25 Aug 11:04
· 83 commits to master since this release

Update

  • Build Process Enhancement: The build process has been streamlined and enhanced in this release. The new script for building the project includes TypeScript compilation, Vite bundling, and additional steps for minification and post-build processing.

    • build:module: This script now performs the following steps:

      • TypeScript Compilation: tsc is used to compile TypeScript files.
      • Vite Bundling: vite build --config vite-module.config.js handles the bundling process.
      • Minification: The minify script, executed with esbuild, minifies all JavaScript files in the dist directory.
      • Post-build Processing: The postbuild script takes care of additional processing tasks after the build.
    • minify: The esbuild command has been added to minify all JavaScript files within the dist directory, ensuring optimized file sizes and improved performance.