react-stream-libs / reactive-renderer

reactive renderer core
1 stars 0 forks source link

Update ts-loader to the latest version ๐Ÿš€ #40

Closed greenkeeper[bot] closed 6 years ago

greenkeeper[bot] commented 6 years ago

Version 3.0.0 of ts-loader was just published.

Dependency ts-loader
Current Version 2.3.7
Type devDependency

The version 3.0.0 is not covered by your current version range.

If you donโ€™t accept this pull request, your project will work just like it did before. However, you might be missing out on a bunch of new features, fixes and/or performance improvements from the dependency update.

It might be worth looking into these changes and trying to get this project onto the latest version of ts-loader.

If you have a solid test suite and good coverage, a passing build is a strong indicator that you can take advantage of these changes directly by merging the proposed change into your project. If the build fails or you donโ€™t have such unconditional trust in your tests, this branch is a great starting point for you to work on the update.


Release Notes v3.0.0

All changes were made with this PR - thanks @johnnyreilly

  • drop support for typescript < 2.0 (no-one seems to be using it and we can simplify the code) BREAKING CHANGE
  • remove entryFileIsJs option; it can be inferred from whether the allowJs TypeScript compiler option has been set.
  • move to webpack 3.0 for test harness
  • drop configFileName support (replaced by configFile) BREAKING CHANGE
  • add support for a custom formatter for output - drop visual studio format (this can be added back if there's clamour for it and people can supply their own formatters in the interim) BREAKING CHANGE
  • make loglevel warn by default (stop outputting typescript version number by default). Fixes #488
  • fix tsc has "module" default to "es2015"when targetting es2015+, but ts-loader does not - thanks @Venryx for the suggestion!
  • switch to build ts-loader / run tests with yarn because of this
  • allow controlling whether the output can contain colours
FAQ and help There is a collection of [frequently asked questions](https://greenkeeper.io/faq.html). If those donโ€™t help, you can always [ask the humans behind Greenkeeper](https://github.com/greenkeeperio/greenkeeper/issues/new).

Your Greenkeeper bot :palm_tree:

greenkeeper[bot] commented 6 years ago

Version 3.0.1 just got published.

Update to this version instead ๐Ÿš€

greenkeeper[bot] commented 6 years ago

Version 3.0.2 just got published.

Update to this version instead ๐Ÿš€

greenkeeper[bot] commented 6 years ago

Version 3.0.3 just got published.

Update to this version instead ๐Ÿš€

Release Notes v3.0.3

This fix resolves the issue for TypeScript 2.4+ (which is likely 95% of users). For those people stuck on 2.3 or below and impacted by this issue, you should be able to workaround this by setting entryFileCannotBeJs: true in your ts-loader options. This option should be considered deprecated as of this release. The option will likely disappear with the next major version of ts-loader which will drop support for TypeScript 2.3 and below, thus removing the need for this option.

Commits

The new version differs by 11 commits.

  • 81d02db Merge pull request #658 from johnnyreilly/master
  • 2aaba6e Deprecate entryFileCannotBeJs
  • 173bd4c Change getCurrentDirectory behaviour for TypeScript 2.3 and below
  • a91a8b4 make nodeResolutionAllowJs run in 2.4+ only
  • a2b613a try strategy approach splitting 2.4 and above and 2.3 and below behaviour
  • e576c92 check old strategy behaviour
  • cb303f5 drop resolveTypeReferenceDirectives for a moment
  • 9f4cc4f Add back support for TypeScript < 2.4
  • f832bb6 Fix allowJs import @types issue
  • a504b11 added nodeResolutionAllowJs test (will fail initially)
  • b182a65 republish as 3.0.2

See the full diff

greenkeeper[bot] commented 6 years ago

Version 3.0.4 just got published.

Update to this version instead ๐Ÿš€

Release Notes v3.0.4
Commits

The new version differs by 19 commits.

  • bb0b09d Prepare for 3.0.4 release
  • 2e2f29a Add hot example
  • cb33f9d Merge pull request #662 from johnnyreilly/master
  • f7e500c Upgrade examples to ts-loader 3 and webpack 3 (and react 16 where applicable)
  • 8972715 removed webpack 1 example
  • 93dd166 Made happypack a dependency of the test rather than ts-loader
  • a2b9cc3 Added licenses to package.jsons
  • 239bf5a upgrade chalk and webpack
  • 8bad811 ignore debug.log files
  • ac273ea delete debug.log
  • ea39a87 Removed typings usage
  • 107fb8f instance still seems to be flaky
  • e0c56aa fx-extra upgrade
  • a5aa51b fix tsconfigInvalidFile
  • ef1f8d6 Fix instance test

There are 19 commits in total.

See the full diff

greenkeeper[bot] commented 6 years ago

Version 3.0.5 just got published.

Update to this version instead ๐Ÿš€

Release Notes v3.0.5
Commits

The new version differs by 1 commits.

See the full diff

greenkeeper[bot] commented 6 years ago

Version 3.1.0 just got published.

Update to this version instead ๐Ÿš€

Release Notes v3.1.0
Commits

The new version differs by 17 commits.

  • 605727d Prepare for 3.1.0 release
  • d946cb6 Update CHANGELOG.md
  • 32fa70c Merge pull request #671 from maier49/compile-bundled-files-and-typing-files
  • 705741e Resolve PR feedback
  • 73af60c Fix indentation
  • 4ad8846 Add option to compile bundled files and .d.ts files only
  • cc1c037 Merge pull request #670 from ORESoftware/patch-1
  • 9136ec4 demonstrated usability with watchers such as webpack -w
  • 3fcb7e9 Merge pull request #669 from johnnyreilly/master
  • e50d5cd Fix chalk 2.3 incompatibility
  • d3cb684 Fix HMR examples
  • 433c7d8 rename hot to core-js
  • c19c945 simplify hot
  • e620352 updated deps
  • 300da75 Add react-hot-boilerplate based on @gaearon's example

There are 17 commits in total.

See the full diff

greenkeeper[bot] commented 6 years ago

Version 3.1.1 just got published.

Update to this version instead ๐Ÿš€

Release Notes v3.1.1

Fix error importing buildt ts files with allowJs (#667) - thanks @Pajn!

Commits

The new version differs by 6 commits.

  • 8a5de24 prepare for 3.1.1 release
  • 59ca674 Update CHANGELOG.md
  • 5e1b477 Merge pull request #674 from Pajn/fix-667
  • e78c31b Merge pull request #675 from FLGMwt/patch-1
  • 5e434e2 typo: s/will generated/will generate
  • bc926d0 Fix none-node_module imports of built ts files

See the full diff