Skip to content

Commit 6fb5a37

Browse files
author
vsternbach
committed
updated dependencies and readme
1 parent fe58c22 commit 6fb5a37

File tree

4 files changed

+12
-7
lines changed

4 files changed

+12
-7
lines changed

README.md

+8-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
This project is an application skeleton for [AngularJS](http://angularjs.org/) 1.5 web app using new component syntax and typescript.
44

5-
It uses two different budnling systems webpack and systemjs, use the appropriate branch.
5+
It uses two different bunling systems webpack and systemjs, use the appropriate branch.
66

77
Webpack branch has support for importing sass styles inline in the modules, for system js external stylesheets should be used, it has support for inline imports only with jspm.
88

@@ -18,13 +18,19 @@ You need git to clone the angularjs-typescript-webpack repository. You can get g
1818
We also use a number of node.js tools to initialize and test angular-seed. You must have node.js and
1919
its package manager (npm) installed. You can get them from [http://nodejs.org/](http://nodejs.org/).
2020

21+
Install these globally:
22+
23+
```
24+
npm install -g webpack webpack-dev-server typings
25+
```
26+
2127
### Clone angularjs-typescript-webpack
2228

2329
Clone the angularjs-typescript-webpack repository using git:
2430

2531
### Install Dependencies
2632

27-
We have two kinds of dependencies in this project: development tools and application specific packages. They are both managed with npm in package.json as devDependencies and dependecies respectively.
33+
We have two kinds of dependencies in this project: development tools and application specific packages. They are both managed with npm in package.json as devDependencies and dependencies respectively.
2834

2935
```
3036
npm install

package.json

+4-5
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,16 @@
66
"repository": "https://github.com/vsternbach/angularjs-typescript-webpack",
77
"license": "MIT",
88
"devDependencies": {
9-
"awesome-typescript-loader": "^0.17.0-rc.4",
9+
"awesome-typescript-loader": "^0.17.0",
1010
"copyfiles": "^0.2.1",
1111
"css-loader": "^0.23.1",
1212
"node-sass": "^3.4.2",
1313
"rimraf": "^2.5.2",
1414
"sass-loader": "^3.2.0",
1515
"style-loader": "^0.13.1",
16-
"ts-loader": "^0.8.1",
17-
"typescript": "^1.8.9",
18-
"typings": "^0.7.11",
19-
"webpack": "^1.12.14",
16+
"typescript": "^1.8.10",
17+
"typings": "^1.0.4",
18+
"webpack": "^1.13.1",
2019
"webpack-dev-server": "^1.14.1"
2120
},
2221
"dependencies": {

typings/browser.d.ts

Whitespace-only changes.

typings/main.d.ts

Whitespace-only changes.

0 commit comments

Comments
 (0)