13.md (7352B)
1 # PR #13 Update dependency ts-node to ^5.0.0 2 3 - **Status:** merged 4 - **Author:** @renovate[bot] 5 - **Created:** 2018-03-24T15:41:54Z 6 - **Branch:** renovate/ts-node-5.x → master 7 - **Merged:** 2018-03-24T16:16:49Z 8 - **Labels:** enhancement, Dependencies 9 - **Assignees:** @MTRNord 10 - **Diff:** [13.diff](./13.diff) 11 12 --- 13 14 This Pull Request updates dependency [ts-node](https://github.com/TypeStrong/ts-node) from `^3.2.0` to `^5.0.0` 15 16 17 18 <details> 19 <summary>Release Notes</summary> 20 21 ### [`v4.0.0`](https://github.com/TypeStrong/ts-node/releases/v4.0.0) 22 23 **Changed** 24 25 * `--fast` is the default behaviour now, use `--type-check` for type checking behaviour 26 27 **Added** 28 29 * Support for custom transformers 30 * `@types` packages 31 32 **Fixed** 33 34 * Improved forwarding of signals 35 * Don't force exit from REPL 36 * Improved performance when type checking large projects 37 38 --- 39 40 ### [`v4.0.1`](https://github.com/TypeStrong/ts-node/releases/v4.0.1) 41 42 **Fixed** 43 44 * Add missing `register/` directory to package 45 46 --- 47 48 ### [`v4.0.2`](https://github.com/TypeStrong/ts-node/releases/v4.0.2) 49 50 **Changed** 51 52 * Move `@types` deps to dev deps 53 54 --- 55 56 ### [`v4.1.0`](https://github.com/TypeStrong/ts-node/releases/v4.1.0) 57 58 **Changed** 59 60 * Avoid detaching process in Windows 61 62 --- 63 64 ### [`v5.0.0`](https://github.com/TypeStrong/ts-node/releases/v5.0.0) 65 66 **Changed** 67 68 * Remove the sub-process spawning behaviour that introduced issues with 4.x 69 * Use `node -r ts-node/register` for advanced node.js flags such as `--inspect` 70 * Drop support for pre-2.0 TypeScript releases 71 * Use TypeScript to parse `tsconfig.json` to mirror `tsc` behaviours 72 * **Caveat:** Must specify full path when using `project` in 5.x 73 74 **Fixed** 75 76 * Fixed issues with CLI and environment variable defaults 77 78 --- 79 80 ### [`v5.0.1`](https://github.com/TypeStrong/ts-node/releases/v5.0.1) 81 82 **Fixed** 83 84 * Ignore TypeScript `rootDir` errors 85 86 --- 87 88 </details> 89 90 91 <details> 92 <summary>Commits</summary> 93 94 #### v4.0.0 95 - [`1385d47`](https://github.com/TypeStrong/ts-node/commit/1385d4791222e0619d97ac1150d83ea26244cc8f) TSLint args, improve `exports =` hack, new node.js (#​404) 96 - [`1f4123b`](https://github.com/TypeStrong/ts-node/commit/1f4123beb8f9827c2e53294e26ce4531d0365ec8) Default to "fast", new flag `--type-check` (#​412) 97 - [`2ee9575`](https://github.com/TypeStrong/ts-node/commit/2ee95755a2013e88d8b6cc92aa6d34b6d32bc203) fix(package): update tsconfig to version 7.0.0 (#​415) 98 - [`d80999d`](https://github.com/TypeStrong/ts-node/commit/d80999d2421b0b7d9e62ca38857f9e477d6a9c5f) Migrate to @​types packages (#​413) 99 - [`5e12d33`](https://github.com/TypeStrong/ts-node/commit/5e12d331adc22dff2bdf17ef49d4a443589f61fd) Include `.jsx` files with `allowJs` (#​423) 100 - [`46f6361`](https://github.com/TypeStrong/ts-node/commit/46f6361ab02bf34f4d536d212ae291f9c6d0d4c1) Update `FAST` environment variable to `TYPE_CHECK` (#​425) 101 - [`daa8c01`](https://github.com/TypeStrong/ts-node/commit/daa8c013e2c1dca161a3c55ea0cf6b8808c68ca9) Update node.js CLI flags (#​426) 102 - [`1313726`](https://github.com/TypeStrong/ts-node/commit/1313726d2c8084da4d86fff893767c508b7f2b48) Support custom transformers (#​429) 103 - [`c01709c`](https://github.com/TypeStrong/ts-node/commit/c01709c0dc7096f9e4ee98238e5fa03d620038f3) fix(package): update source-map-support to version 0.5.0 (#​439) 104 - [`a62b3b6`](https://github.com/TypeStrong/ts-node/commit/a62b3b6d299cbcfd3f6393b034009d9818e18893) chore(package): update mocha to version 4.0.0 (#​438) 105 - [`6dd8867`](https://github.com/TypeStrong/ts-node/commit/6dd886720067f681bcd13e1b3f880103ecdfa517) chore(package): update react to version 16.0.0 (#​435) 106 - [`3718bf1`](https://github.com/TypeStrong/ts-node/commit/3718bf135ac816328790cae3b0319b0352c1fdff) Update `chalk` imports (#​451) 107 - [`88e9a9d`](https://github.com/TypeStrong/ts-node/commit/88e9a9d151abbb659be354c8e94cd803c319c677) Update mocha docs in README (#​446) 108 - [`1d630f9`](https://github.com/TypeStrong/ts-node/commit/1d630f90f31ac7cc7f82b10145819e9405d65fd3) chore(package): update tslint-config-standard to version 7.0.0 (#​454) 109 - [`d02f8f1`](https://github.com/TypeStrong/ts-node/commit/d02f8f1618f6a12943ac23ea11b9c222f9f7db85) Check `options.project == null` instead of falsy 110 - [`ce1eceb`](https://github.com/TypeStrong/ts-node/commit/ce1ecebca339cbf3e14dca90cf3bfea97b534a7f) Update `chalk` and related types 111 - [`e8bdbed`](https://github.com/TypeStrong/ts-node/commit/e8bdbed926053b4d3c6fa1b847c6db68878746f9) Stricter `undefined` checks for options 112 - [`e7591c7`](https://github.com/TypeStrong/ts-node/commit/e7591c7e70c95152d8fd1380571ff870192c475e) Update README with docs on `--no-` prefixes 113 - [`c57ded2`](https://github.com/TypeStrong/ts-node/commit/c57ded2881debf773af7b8e01cb652d48f8655ca) Fix `-n` reference in README 114 - [`d4a1c94`](https://github.com/TypeStrong/ts-node/commit/d4a1c94a751345863172d9de590bbbb0cc5f2178) Improve performance on large projects (#​461) 115 - [`85c139a`](https://github.com/TypeStrong/ts-node/commit/85c139af260921671c7e39f254b21df4d645f935) Remove forced exit on inline evals (#​477) 116 - [`be7895c`](https://github.com/TypeStrong/ts-node/commit/be7895c438dbb97d9094ec4e866ba5435eb42988) Forward signals correctly (#​419) 117 - [`94cba9c`](https://github.com/TypeStrong/ts-node/commit/94cba9cdfa5d94b4d8a7ded9cb552ad65c87d32d) 4.0.0 118 #### v4.0.1 119 - [`c6a70f9`](https://github.com/TypeStrong/ts-node/commit/c6a70f9b5a07b3e43666ef9a6c9bb6050872de90) Include `register/` directory in published package 120 - [`1541dfe`](https://github.com/TypeStrong/ts-node/commit/1541dfe65cbc1087cc8e4a68b45f72c0604544e3) 4.0.1 121 #### v4.0.2 122 - [`3eefb00`](https://github.com/TypeStrong/ts-node/commit/3eefb006bf2d2565b114123b23d156a0729a0d7d) Add `--trace-warnings` flag (#​488) 123 - [`f04c5f7`](https://github.com/TypeStrong/ts-node/commit/f04c5f71fd571ebf14b3823795af98a568d62e7d) Move `@​types` to dev dependencies (#​484) 124 - [`129153f`](https://github.com/TypeStrong/ts-node/commit/129153f810a7e2306a89ecafff9ae698dc871fff) 4.0.2 125 #### v4.1.0 126 - [`89d62aa`](https://github.com/TypeStrong/ts-node/commit/89d62aa53fc969e0fbf8c4e4e5b63d2339856b7c) Disable detached sub-process on Windows (#​489) 127 - [`d5a941c`](https://github.com/TypeStrong/ts-node/commit/d5a941cf7f03f8a2b7cd2c761efe5dba4c75cba6) 4.1.0 128 #### v5.0.0 129 - [`7164ab7`](https://github.com/TypeStrong/ts-node/commit/7164ab734c73167dce9adc2538e98d3d9999f7f6) Remove process spawn, old TypeScript versions (#​536) 130 - [`68f8220`](https://github.com/TypeStrong/ts-node/commit/68f8220ac9ec77c6f2e4b599d2e6a0e8a2e9bd13) 5.0.0 131 #### v5.0.1 132 - [`fd1985d`](https://github.com/TypeStrong/ts-node/commit/fd1985d5f1e44737f45df04b7405e00b95959209) Fix incorrect environment variables in docs (#​538) 133 - [`10af1c5`](https://github.com/TypeStrong/ts-node/commit/10af1c50ccb0e07d577b2704137cab56f4094bad) Vague README improvements 134 - [`0c7fa0d`](https://github.com/TypeStrong/ts-node/commit/0c7fa0da66bdfd191e257becb4d07fd6e4f95c16) Ignore `rootDir` errors (#​544) 135 - [`ab7dd0f`](https://github.com/TypeStrong/ts-node/commit/ab7dd0fe5db55967aaae3c3625695d11fd3e4400) 5.0.1 136 137 </details> 138 139 140 141 --- 142 143 This PR has been generated by [Renovate Bot](https://renovateapp.com). 144