Skip to content

Commit 2d532aa

Browse files
committed
Add dependencies - angular, angular-ui-router, and gulp to build/minify our javascript.
1 parent 80467ca commit 2d532aa

File tree

4 files changed

+35
-0
lines changed

4 files changed

+35
-0
lines changed

src/AngularGettingStarted/.bowerrc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"directory": "wwwroot/lib",
3+
"proxy": "http://127.0.0.1:8082",
4+
"https-proxy": "http://127.0.0.1:8082"
5+
}

src/AngularGettingStarted/bower.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"name": "ASP.NET",
3+
"private": true,
4+
"dependencies": {
5+
"angular": "~1.5.0",
6+
"angular-ui-router": "~0.2.15"
7+
}
8+
}

src/AngularGettingStarted/gulpfile.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
/*
2+
This file in the main entry point for defining Gulp tasks and using Gulp plugins.
3+
Click here to learn more. http://go.microsoft.com/fwlink/?LinkId=518007
4+
*/
5+
6+
var gulp = require('gulp');
7+
8+
gulp.task('default', function () {
9+
// place code for your default task here
10+
});
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"version": "1.0.0",
3+
"name": "ASP.NET",
4+
"private": true,
5+
"devDependencies": {
6+
"gulp": "~3.9.0",
7+
"gulp-concat": "~2.6.0",
8+
"gulp-cssmin": "~0.1.7",
9+
"gulp-uglify": "~1.4.1",
10+
"rimraf": "~2.4.3"
11+
}
12+
}

0 commit comments

Comments
 (0)