Releases: Becklyn/kaba
Releases · Becklyn/kaba
9.0.2
Add possibility to add custom webpack loader
Merge pull request #158 from Becklyn/add-custom-webpack-config Add custom webpack config
9.0.0
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.
- Removed the
- 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
, andMODERN_BUILD
+DEBUG
(withoutprocess.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 totypescript
. - 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 useimport()
. - 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
✨ 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
9.0.0-9
✨ Improvements
- Switch from include-list to exclude-list in npm package compilation 404c018
🐛 Bug Fixes
- Remove cache loader b74b66f
🛠️ Internal
- Update changelog cee9926
Commits
9.0.0-10
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
9.0.0-8
💥 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
✨ 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 useimport()
.
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-5
💥 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.