Skip to content

Commit 46e79c0

Browse files
committed
Publish v0.8.0
1 parent e444bac commit 46e79c0

File tree

3 files changed

+18
-1
lines changed

3 files changed

+18
-1
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## v0.8.0
4+
5+
- Add support for emitting declaration files when `declaration: true` is set (#48, #128)
6+
- Fix bug with specifying `target: es6` and `module: commonjs` at the same time when using
7+
TS 1.7+ (#111, #132, #140).
8+
- Fix bug with resolving dependencies which are linked using `npm link` (#134, #141)
9+
310
## v0.7.2
411

512
- Fix regression with watching definition files (#109, #110)

UPGRADE.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Upgrade Guide
22

3+
## v0.7.x to 0.8.x
4+
5+
This release has two breaking changes:
6+
7+
1. If you are using TypeScript 1.7+ and specify `target: es6` and
8+
`module: commonjs`, the output will now be CommonJS instead of ES6
9+
modules. This brings ts-loader into alignment with `tsc`.
10+
2. Declaration files are now emitted when `declaration: true` is
11+
specified in the tsconfig.json.
12+
313
## v0.6.x to 0.7.x
414

515
This release changed loader messages to print on stderr instead of

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ts-loader",
3-
"version": "0.7.2",
3+
"version": "0.8.0",
44
"description": "TypeScript loader for webpack",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)