Skip to content

Latest commit

 

History

History
152 lines (82 loc) · 3.43 KB

CHANGELOG.md

File metadata and controls

152 lines (82 loc) · 3.43 KB

Changes

0.5.6 2024-12-06

  • Typescript 5.7

0.5.5 2024-11-26

  • Republished against Meteor 3.1

0.5.5-beta31rc0 2024-11-13

  • Republished against Meteor 3.1-rc.0 for TLA fixes in babel-compiler

0.5.5-beta31b0 2024-11-05

  • Republished against Meteor 3.1-beta0 for TLA fixes in babel-compiler

0.5.4 2024-10-20

  • Typescript bug fix update 5.6.3

  • Republished against Meteor 3.0.4

Why republished?

Since meteor publish stores a copy of all compiler dependencies, it is necessary to re-publish to get updates to dependencies.

This time, this was done to get the TLA-detection fixes in the npm package @meteorjs/[email protected] that were brought in by the npm package [email protected] by the meteor package [email protected].

0.5.3 2024-09-10

  • Typescript upgraded to 5.6.2

0.5.2 2024-06-19

  • Typescript upgraded to 5.5.2

0.5.1 2024-05-08

  • Trying to create a dual (Meteor 2+3) published package

0.5.0 2024-04-29

  • Typescript upgraded to 5.4.5
  • Sample app upgraded to Meteor 2.15
  • Separate sample app upgraded to Meteor 3 RC0

0.3.19 2024-04-12

  • Typescript upgraded to 5.4.5
  • Sample app upgraded to Meteor 2.15

0.3.18 2023-11-25

  • Typescript upgraded to 5.3.2

0.3.17 2023-08-25

  • Typescript upgraded to 5.2.2

0.3.16 2023-06-07

  • Typescript upgraded to 5.1.3

0.3.15 2023-04-02

  • No longer enforces source maps and adds support for an environment variable TYPESCRIPT_SOURCEMAP for overriding the setting in tsconfig.json

0.3.14 2023-03-20

  • Upgrade because I aborted the previous deploy which seems to have made it corrupt and I don’t know how to upgrade it.

0.3.13 2023-03-20

  • Typescript upgraded to 5.0.2

0.3.12 2022-12-29

  • Adding support for environment variable TYPESCRIPT_FAIL_ON_COMPILATION_ERRORS

0.3.11 2022-12-03

  • Typescript upgraded to 4.9.3

0.3.10 2022-09-07

  • Typescript upgraded to 4.8.2

0.3.9 2022-06-08

  • Typescript upgraded to 4.7.3

0.3.8 2022-03-08

  • Typescript upgraded to 4.6.2

0.3.7 2021-11-30

  • Typescript upgraded to 4.5.2

0.3.6 2021-09-01

  • Typescript upgraded to 4.4.2

0.3.5 2021-05-29

  • Typescript upgraded to 4.3.2

0.3.4 2021-05-29

  • Broken publish

0.3.3 2021-02-25

  • Typescript upgraded to 4.2.2

0.3.2 2020-12-08

  • Relax the meteor core typescript dependency so the compiler works with meteor 1.12

0.3.1 2020-12-07

  • Use cache path relative source directory also in test mode to be able to reuse incremental cache

0.3.0 2020-11-25

  • Major rewrite to use incremental watching compiler for much faster (re)compiles

0.2.2 2020-11-21

  • Typescript upgraded to 4.1.2
  • Turned on strict ts mode in tsconfig and adapted compiler code accordingly

0.2.1 2020-09-07

  • Add back setting of disk cache directory for BabelCompiler

0.2.0 2020-09-07

  • Typescript upgraded to 4.0.2
  • Output caching is now enabled by default but can be disabled through by setting METEOR_TYPESCRIPT_CACHE_DISABLED to a truthy value
  • Cache files are now stored in .meteor/local/pluginCache/refapp_meteor-typescript/[version]

0.1.6 2020-07-31

Added experimental output caching, enabled if TYPESCRIPT_CACHE is set to any truthy value. The javascript and source maps produced by Typescript will then be stored under .meteor/local/.typescript-incremental/v1cache and updated based on the incremental build support.

0.1.5 2020-07-26

Reinstated change to make watch mode work during meteor test by sending in source path as "path" to addJavaScript.