Skip to content

Releases: babel/babel-loader

v8.0.2

03 Sep 00:06
Compare
Choose a tag to compare
  • #541 - A bunch of great README fixes
  • #574 - Add cacheCompression: false to disable GZip compression of the disk cache
  • #670 - Handle both 'sourceMap' and 'sourceMaps' options properly
  • #671 - Fix sourceMaps: 'inline' to work properly with babel-loader
  • #669 - Fix sourcemaps to work with Webpack's devtoolModuleFilenameTemplate placeholders

v8.0.1

01 Sep 21:10
Compare
Choose a tag to compare
  • #662 - docs: update README.md
  • #667 - docs: Remove babelrc from loader-specific options
  • #668 - Add a warning if you forget to install @babel/core or install babel-core.

v8.0.0

27 Aug 22:17
Compare
Choose a tag to compare

This is the first stable release of babel-loader for Babel 7.x.

  • README updates
  • Dropped peer dependency on betas and RCs, but left the backward-compat code we had for now to give people time to migrate

v8.0.0-beta.6

21 Aug 20:06
Compare
Choose a tag to compare
v8.0.0-beta.6 Pre-release
Pre-release
  • #639 - Use MD4 instead of SHA1 for filename hashes
  • #644 - Read file before creating directory
  • #645 - [docs] Update http-links to https
  • #660 - Pass Babel's .caller option and pass supportsStaticESM:true.

NOTE: For those looking for v8.0.0-beta.5, it was a mis-publish of the wrong branch and included only #660 and missed the other 3 PRs.

v7.1.5

05 Jul 16:31
Compare
Choose a tag to compare

v7.1.5

  • Perf: Use md4 instead of sha1 for filename hashes (#638)

v8.0.0-beta.4

22 Jun 02:56
Compare
Choose a tag to compare
v8.0.0-beta.4 Pre-release
Pre-release
  • #629 Include additional result values from Babel's output for custom loaders

8.0.0-beta.3

17 May 19:03
Compare
Choose a tag to compare
8.0.0-beta.3 Pre-release
Pre-release
  • #590 Handle cache directory fallback better
  • #599 Drop logic for reading the .babelrc and rely on @babel/core
  • #618 Refactor to use async functions for async handling (compiled to generators)
  • #619 Expose an API for users to create custom wrapper around babel-loader

7.1.4

06 Mar 09:54
Compare
Choose a tag to compare

🐛 Bug Fix

  • Update code to read filename

8.0.0-beta.2

26 Feb 10:24
Compare
Choose a tag to compare
8.0.0-beta.2 Pre-release
Pre-release

💥BREAKING CHANGE

 {
   loader: 'babel-loader',
   options: {
-    forceEnv: 'staging',
+    envName: 'staging',
   },
 }

🐛 Bug Fix

  • Fix the resolving of babelrc when extends not set (#588) (@danez)

8.0.0-beta.1

25 Feb 17:20
Compare
Choose a tag to compare
8.0.0-beta.1 Pre-release
Pre-release

💥BREAKING CHANGE

The babelrc option was changed. It now only accepts true or false as valid option (similar to other babel packages) and does not allow setting a string. If you previously had a filename specified you need to change to extends

 {
   loader: 'babel-loader',
   options: {
-    babelrc: 'path/to/.babelrc',
+    babelrc: false,
+    extends: 'path/to/.babelrc',
   },
 }

🐛 Bug Fix

📝 Documentation