Skip to content

Commit

Permalink
Remove references to the beta version of TypeScript 1.6.
Browse files Browse the repository at this point in the history
  • Loading branch information
denvned committed Sep 18, 2015
1 parent de42ac8 commit da45029
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
6 changes: 1 addition & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
TypeScript Loader for *webpack*
===============================

*webpack-typescript* is a lightweight TypeScript loader for *webpack* allowing you to pack multiple modules written in TypeScript into a bundle. It supports not only TypeScript 1.5, but also TypeScript 1.6, which among other things introduces support for React JSX.
*webpack-typescript* is a lightweight TypeScript loader for *webpack* allowing you to pack multiple modules written in TypeScript into a bundle. It supports TypeScript 1.6, which among other things have introduced support for React JSX. TypeScript 1.5 is also supported.

Installation
------------
Expand All @@ -10,10 +10,6 @@ To install *webpack-typescript* run the following command in your project direct

npm install webpack-typescript --save-dev

And if you need TypeScript 1.6 Beta, run the following command before or after installing *webpack-typescript:*

npm install [email protected] --save-dev

Configuration
-------------

Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "webpack-typescript",
"version": "0.5.3",
"version": "0.5.4",
"author": "Denis Nedelyaev",
"license": "MIT",
"description": "Lightweight TypeScript Loader for webpack.",
Expand All @@ -23,9 +23,9 @@
},
"main": "lib/index.js",
"peerDependencies": {
"typescript": "^1.5.3 || ^1.6.0-beta"
"typescript": "^1.5.3"
},
"devDependencies": {
"typescript": "^1.6.0-beta"
"typescript": "^1.6.2"
}
}

0 comments on commit da45029

Please sign in to comment.