Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Releases: callstack/haul

Release 13/04/2021

13 Apr 10:19
@zamotany zamotany

Choose a tag to compare

Updated packages

  • @haul-bundler/cli ➡️0.23.0
  • @haul-bundler/core ➡️0.23.0
  • @haul-bundler/preset-0.59 ➡️0.18.1
  • @haul-bundler/preset-0.60 ➡️0.18.1
  • @haul-bundler/explore ➡️0.16.1

Changelog

core / cli

  • chore: handle unknown args (#759)
  • feat: support node 14 (#758)

preset-0.59 / preset-0.60

  • feat: refactor plugins - PreloadBundlesPlugin, PreloadModulesDllPlugin and LooseModePlugin (#749)
  • fix: provide original code in source maps when using RAM bundles (#761)
Assets 2
Loading

Release 31/10/19

05 Nov 07:49
@zamotany zamotany

Choose a tag to compare

Updated packages

  • @haul-bundler/babel-preset-react-native ➡️0.14.2
  • @haul-bundler/cli ➡️0.14.2
  • @haul-bundler/core ➡️0.14.2
  • @haul-bundler/preset-0.59 ➡️0.14.2
  • @haul-bundler/preset-0.60 ➡️0.14.2
  • @haul-bundler/ram-bundle-webpack-plugin ➡️0.14.2

Changelog

babel-preset-react-native

  • fix: transform spread operator for Hermes (#670)

core / cli

  • feat: use webpack to resolve initializeCoreLocation file (#669)

preset-0.59 / preset-0.60

  • fix: use correct aliasFileds to exclude Node polyfills from bundle (#672)
Loading

Release 24/10/19

24 Oct 10:09
@zamotany zamotany

Choose a tag to compare

Updated packages

  • @haul-bundler/babel-preset-react-native ➡️(削除) 0.14.0 (削除ここまで) 0.14.1
  • @haul-bundler/basic-bundle-webpack-plugin ➡️(削除) 0.14.0 (削除ここまで) 0.14.1
  • @haul-bundler/cli ➡️(削除) 0.14.0 (削除ここまで) 0.14.1
  • @haul-bundler/core-legacy ➡️(削除) 0.14.0 (削除ここまで) 0.14.1
  • @haul-bundler/core ➡️(削除) 0.14.0 (削除ここまで) 0.14.1
  • @haul-bundler/inspector-events ➡️(削除) 0.14.0 (削除ここまで) 0.14.1
  • @haul-bundler/inspector➡️(削除) 0.14.0 (削除ここまで) 0.14.1
  • @haul-bundler/preset-0.59 ➡️(削除) 0.14.0 (削除ここまで) 0.14.1
  • @haul-bundler/preset-0.60 ➡️(削除) 0.14.0 (削除ここまで) 0.14.1
  • @haul-bundler/ram-bundle-webpack-plugin ➡️(削除) 0.14.0 (削除ここまで) 0.14.1

Changelog

cli

  • feat: install previous version of preset if the target one is not available (#665)

core

  • fix: assets in transitive dependencies (#661)

babel-preset-react-native

  • feat: export functions for getting a list of plugins and utilities (#664)
  • fix: include CJS transform when testing in Babel preset (#662)
  • fix: add missing transform for ChackraCore (#659)

preset-0.59

  • fix: add aliasFields to webpack config (#654)

preset-0.60

  • fix: add aliasFields to webpack config (#654)
Loading

@haul-bundler/babel-preset-react-native v0.13.2

23 Sep 14:43
@zamotany zamotany

Choose a tag to compare

  • @haul-bundler/babel-preset-react-native package was updated to 0.13.2 (requires manual update)

Changelog

  • fix: use platform-specific path separator (#647)
Loading

@haul-bundler/babel-preset-react-native v0.13.1

23 Sep 12:44
@zamotany zamotany

Choose a tag to compare

  • @haul-bundler/babel-preset-react-native package was updated to 0.13.1 (requires manual update)

Changelog

  • fix: only add plugin-transform-react-jsx-source in dev (#640) thanks to @tido64
Loading

@haul-bundler v0.13.0

09 Sep 15:56
@zamotany zamotany

Choose a tag to compare

All @haul-bundler packages were released to NPM with version 0.12.0.

Changelog

  • feat: external bundles (#633)
Loading

@haul-bundler/* v0.12.0

19 Aug 08:57
@zamotany zamotany

Choose a tag to compare

All @haul-bundler packages were released to NPM with version 0.12.0.

Changelog

  • feat: reads ANDROID_HOME for adb location (#627) - thanks to @joelgallant
  • fix: inline source maps for TS + split source w/ and w/o into groups (#626)
  • feat: improved logging and server UI (#628)
Loading

@haul-bundler/* v0.11.0

09 Aug 17:40
@zamotany zamotany

Choose a tag to compare

All @haul-bundler packages were released to NPM with version 0.9.0.

Changelog

  • docs: add note about localhost/0.0.0.0 issue (#622) - thanks to @Michael-Stern
  • fix: port setting in haul.config.js not used (#623)
  • fix: speed up source map generation by only stringifying at the end (#624) - thanks to @FuegoFro
  • chore: update dependencies (#625)
Loading

@haul-bundler/babel-preset-react-native v0.10.1

02 Aug 12:18
@zamotany zamotany

Choose a tag to compare

@haul-bundler/babel-preset-react-native package was release with version 0.10.1 with the following changes:

  • fix: hermes option read from wrong param #619
Loading

@haul-bundler/* v0.10.0

01 Aug 13:58
@zamotany zamotany

Choose a tag to compare

All @haul-bundler packages were released to NPM with version 0.9.0.

Notes

We've migrated away from @babel/register in favour of transpiling only modules that needs to be transpiled in the config with #613, which means that @babel/register is not longer injected into the require calls. If you are using custom Webpack plugins, resolvers etc with syntax unsupported by Node 10 LTS or newer like import/export (ES Modules), then you need to transpile those files manually (for example with postinstall script) or rewrite them to use supported syntax.

Changelog

  • fix: add babel plugins to support Hermes #617 - thanks to @tido64
  • chore: improve integration test suites #615
  • feat: improve TypeScript support #614
  • feat: replace @babel/register and manually transpile config modules on-demand #613
  • feat: better handle interactivity in start command #611
  • fix: replace --tempDir with --temp-dir #610
Loading
Previous 1 3
Previous

AltStyle によって変換されたページ (->オリジナル) /