All notable changes to this project will be documented in this file. See standard-version for commit guidelines.
5.0.0 (2024-01-16)
4.0.1 (2022-08-12)
4.0.0 (2022-05-17)
- minimum supported
Node.js
version is14.15.0
3.1.1 (2021-11-01)
3.1.0 (2021-10-22)
3.0.1 (2021-10-21)
3.0.0 (2021-05-18)
- minimum supported
Node.js
version is12.13.0
2.0.0 (2021-02-01)
- minimum supported
webpack
version is5
- inline syntax was changed:
[]
is no longer supported (i.e.imports-loader?imports[]=default|jquery|$&imports[]=angular!./example.js
), please use,
comma separator (i.e.imports-loader?imports=default|jquery|$,angular!./example.js
)
1.2.0 (2020-10-07)
1.1.0 (2020-06-24)
- "|" character can be used as delimiter for inline string syntax (00697de)
1.0.0 (2020-06-17)
- minimum supported Node.js version is
10.13
- minimum supported
webpack
version is4
inline
syntax was changed, please read- list of imported modules moved to the
imports
option, please read - wrapper moved to the
wrapper
option, please read - custom variables moved to the
additionalCode
option, please read - generates ES module default import by default (
import Foo from 'foo';
)
- validate options
- support webpack 5
- implemented the
type
option (imports can be CommonsJS or ES module format) - implemented the ability to generate multiple import in CommonJS or ES module format
- improved support of
inline
usage - allowed to adding arguments for wrapper
- allowed to inject any custom code
- do not crash on invalid inline syntax
- respect
'use strict';