Releases: AnomalyInnovations/serverless-bundle
Handling non standard JSON tsconfigs
The check for unsupported module
or target
options in the tsconfig.json
now supports non-JSON tsconfigs as well. Uses the built-in TS config parser instead of the regular JSON parser.
Update using:
$ npm install --save-dev --save-exact [email protected]
Upgrading to ESLint 7
Major version bump because of the ESLint 7 upgrade #158. Check out the ESLint 7 migration guide — https://eslint.org/docs/user-guide/migrating-to-7.0.0
Also includes:
- Throw a warning for TS
commonjs
setting #124 - Jest test sequencer to supported keys #159
- Babel optional chaining #142
- Fixing dependencies in
package.json
#157
Upgrade using:
$ npm install --save-dev --save-exact [email protected]
Updating jest, ts-jest, and babel-jest
Updating jest, ts-jest, and babel-jest.
Upgrade using:
$ npm install --save-dev --save-exact [email protected]
Adding externals all option
Adding an option to mark all node_modules as externals and skip bundling them through Webpack. (#145)
Upgrade using:
$ npm install --save-dev --save-exact [email protected]
Fixing package.json path issue #148
Fixing (#148): Fails to find package.json if the cwd has been changed
Upgrade using:
$ npm install --save-dev --save-exact [email protected]
Upgrading to TypeScript 4
Upgrade using:
$ npm install --save-dev --save-exact [email protected]
Updating copy-webpack-plugin
Updating copy-webpack-plugin to fix security vulnerabilities.
Upgrade using:
$ npm install --save-dev --save-exact [email protected]
Changes to Jest settings
Major version bump simply because the Jest testEnvironment
is now set to node
and this might break some older tests.
Update using:
$ npm install --save-dev --save-exact [email protected]
Adding TypeScript support
A huge thanks to everybody that contributed to make this release possible.
Update using:
$ npm install --save-dev --save-exact [email protected]
Adding support for Jest aliases
You can now use aliases in Jest using the moduleNameMapper
option. Thanks to @chanthafef for the #115.
Update using:
$ npm install --save-dev --save-exact [email protected]