Skip to content

Releases: Becklyn/kaba

9.0.2

01 Feb 14:21
5a511b1
Compare
Choose a tag to compare

9.0.2

🐛 Bug Fixes

  • Re-release

Commits

9.0.1...v9.0.2

Add possibility to add custom webpack loader

10 Jan 09:04
09789d1
Compare
Choose a tag to compare
Merge pull request #158 from Becklyn/add-custom-webpack-config

Add custom webpack config

9.0.0

17 Apr 16:15
Compare
Choose a tag to compare

Changes since 9.0.0-11:

  • Now auslese is compiled by default as well
  • Bump all dependencies

All changes from 8.x to 9.0:

💥 Breaking Changes

  • Always build a legacy and a modern JS build.
  • Remove disableChunkSplitting(), chunk splitting is now always disabled. Use code splitting instead.
  • Not all npm packages are automatically transpiled anymore. You need to define which packages from node_modules to transpile via Babel by using .compileNpmPackages(...).

🎁 New Features

  • Added verbose to the CLI config.
  • Allow to disable the modern build
  • Use eslint-plugin-react-hooks plugin
  • Add option to polyfill core node packages in webpack.
  • Even if not recommended (use SCSS!), we now support compiling CSS via webpack (not as entry point though). The CSS will be injected into the head dynamically.

✨ Improvements

  • Improved error handling of node-sass loading errors.
  • Use better default publicPath to match the default structure of the BecklynAssetsBundle.
  • Don't prefix legacy build with _legacy., but instead prefix modern build with _modern.. That enhances
    compatability for simple builds.
  • Always extract comments.
  • Display build progress in webpack
  • Display linting errors by default.
    • Removed the --lint parameter and added an inverse --silent instead.
  • Added duplicate-package-checker-webpack-plugin that detects duplicate packages in a build in webpack.
  • Always run ESLint
  • Use faster sourcemap for production build
  • Added eslint-plugin-jsdoc and activated multiple rules for checking JSDoc issues.
  • Enable es6 env in ESLint.
  • Also replace process.env.DEBUG, and MODERN_BUILD + DEBUG (without process.env. prefix).
  • Added some newlines to the log to improve formatting.
  • Automatically add the import for the Fragment component from preact for all modules.
  • Set mode for ESLint JSDoc linter to typescript.
  • Improved ESLint linting: now only files in the project dir are linted. This ensures that symlinked dev packages are
    not linted. (/node_modules/ etc are still excluded, of course.)
  • Bump required node version to 12.
  • Allow ++ in JS/TS code.
  • The code is now always compiled per entry file
  • Build TypeScript for the esnext module system, that (amongst other things) allows to use import().
  • TypeScript will now ignore TYPO3 (*typo3*) directories, to prevent issues due to file extension conflicts of TYPO3's typoscript .ts and TypeScript's .ts.

🐛 Bug Fixes

  • Fix issues with symlinked projects.
  • Compile every entry into a separate directory, to avoid issues with the clean plugin.

🛠️ Internal

  • Updated internal dependencies.
  • Bumped all dependencies.

Commits

9.0.0-11...9.0.0

9.0.0-11

24 Mar 14:02
Compare
Choose a tag to compare
9.0.0-11 Pre-release
Pre-release

✨ Improvements

  • TypeScript will now ignore TYPO3 (*typo3*) directories, to prevent issues due to file extension conflicts of TYPO3's typoscript .ts and TypeScript's .ts.

Commits

  • Merge pull request #114 from Becklyn/ignore-typoscript-files 64207e1
  • Reword changelog entry 455a85b
  • Update changelog 98057a6
  • Ignore TYPO3 typoscript files fe26226

9.0.0-10...9.0.0-11

9.0.0-9

04 Feb 14:01
Compare
Choose a tag to compare
9.0.0-9 Pre-release
Pre-release

✨ Improvements

  • Switch from include-list to exclude-list in npm package compilation 404c018

🐛 Bug Fixes

🛠️ Internal

Commits

  • Update changelog cee9926
  • Remove cache loader b74b66f
  • Cache matches in package loader 7271b4b
  • Switch from include-list to exclude-list in npm package compilation 404c018

9.0.0-8...9.0.0-9

9.0.0-10

04 Feb 21:45
Compare
Choose a tag to compare
9.0.0-10 Pre-release
Pre-release

Reverted to:

💥 Breaking Changes

  • Not all npm packages are automatically transpiled anymore. You need to define which packages from node_modules to transpile via Babel by using .compileNpmPackages(...).

Commits

  • Merge pull request #110 from Becklyn/next ab7dd02
  • WE NEED TO GO BACK: include list for npm packages compilation 4fa9aff
  • Bump dependencies 122004c
  • Remove obsolete comment 4e40d14

9.0.0-9...9.0.0-10

9.0.0-8

17 Jan 17:11
Compare
Choose a tag to compare
9.0.0-8 Pre-release
Pre-release

💥 Breaking Changes

  • Now only specific modules in node_modules are transformed. You need to set your packages explicity via .compileNpmPackages(...).

🎁 New Features

  • Even if not recommended (use SCSS!), we now support compiling CSS via webpack (not as entry point though). The CSS will be injected into the head dynamically.

🐛 Bug Fixes

  • Compile every entry into a separate directory, to avoid issues with the clean plugin.

Commits

  • Merge pull request #107 from Becklyn/next cea4cc5
  • Clarify npm compilation 1b6f4cf
  • Reluctantly support compiling CSS via webpack 1dbdcdf
  • Only compile specific node_modules packages 96b7e59
  • Compile every entry into a separate directory, to avoid issues with the clean plugin c89d59d
  • Improve output name 1b1dbae
  • Add explicit types db29218
  • Add missing changelog entry cfe8359

9.0.0-7...9.0.0-8

9.0.0-7

17 Jan 15:04
Compare
Choose a tag to compare
9.0.0-7 Pre-release
Pre-release

✨ Improvements

  • The code is now always compiled per entry file
  • Ignore .css files when compiling webpack. You need to import them manually in your SCSS.
  • Build TypeScript for the esnext module system, that (amongst other things) allows to use import().

Commits

  • Merge pull request #106 from Becklyn/ignore-loader e0d2d85
  • Ignore CSS files when compiling b594b6c
  • Merge pull request #104 from Becklyn/per-entry-compiler bd65d3d
  • Merge pull request #105 from Becklyn/esnext-module-flag 66b83b6
  • move plugins from constructor to build-config 7c9c5ff
  • use esnext for modules 46b85e7
  • define build config in a single place fda837c
  • combine modern and legacy build configs into one config array ba6efce
  • always compile per entry be395f3
  • configure use of per entry compiler 53d2dec
  • remove duplicate warnings from console output f28602f
  • Run a separate instance of Webpack per JS entry file 33f05b8
  • Allow ++ in JS/TS code. 614b304

9.0.0-6...9.0.0-7

9.0.0-6

14 Jan 17:21
Compare
Choose a tag to compare
9.0.0-6 Pre-release
Pre-release

✨ Improvements

  • Bump required node version to 12.

🛠️ Internal

  • Bumped all dependencies.

Commits

  • Merge pull request #103 from Becklyn/bump-node 314fb08
  • Re-enable full CI 23996e9
  • Bump all dependencies + bump required node version 66781be

9.0.0-5...9.0.0-6

9.0.0-5

14 Jan 17:01
Compare
Choose a tag to compare
9.0.0-5 Pre-release
Pre-release

💥 Breaking Changes

  • Remove disableChunkSplitting(), chunk splitting is now always disabled. Use code splitting instead.

✨ Improvements

  • Enable cache-loader, which might speed up the webpack build.

Commits

9.0.0-4...9.0.0-5