Skip to content

Commit

Permalink
0.61.0
Browse files Browse the repository at this point in the history
This closes #76
  • Loading branch information
coni2k authored Jun 21, 2016
1 parent 64b585b commit f2561b7
Show file tree
Hide file tree
Showing 6 changed files with 33 additions and 56 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
### Changelog

**0.61.0**

* bower was replaced with npm
https://github.com/forCrowd/WealthEconomy/issues/76

**0.60.1**

* Contributors page fixes
Expand Down
2 changes: 1 addition & 1 deletion SolutionItems/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@
//
// AssemblyFileVersion is not in use for the moment
//
[assembly: AssemblyVersion("0.60.1")]
[assembly: AssemblyVersion("0.61.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
47 changes: 0 additions & 47 deletions ngClient/bower.json

This file was deleted.

10 changes: 5 additions & 5 deletions ngClient/gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ var appMinCss = 'app.min.css',
appCssSrc = [appCssRoot + '/*.css', appJsRoot + '/directives/**/*.css', '!' + appCssRoot + '/' + appCss, '!' + appCssRoot + '/' + appMinCss];

// lib variables
var libJsSrcRoot = './bower_components',
var libJsSrcRoot = './node_modules',
libJsSourceMapRoot = libJsSrcRoot.substring(1);

// lib.js variables
Expand All @@ -38,7 +38,7 @@ var libMinJs = 'lib.min.js',
libJsSrcRoot + '/angular-route/angular-route.js', // angularRoute
libJsSrcRoot + '/angular-sanitize/angular-sanitize.js', // angularSanitize
libJsSrcRoot + '/angular-moment/angular-moment.js', // angularMoment
libJsSrcRoot + '/datajs/datajs.js', // datajs
libJsSrcRoot + '/datajs/lib/datajs.js', // datajs
libJsSrcRoot + '/breeze-client/build/breeze.base.debug.js', // breeze
libJsSrcRoot + '/breeze-client/build/adapters/breeze.ajax.angular.js', // breezeAjaxAngular
libJsSrcRoot + '/breeze-client/build/adapters/breeze.dataService.odata.js', // breezeDataServiceOData
Expand All @@ -49,8 +49,8 @@ var libMinJs = 'lib.min.js',
libJsSrcRoot + '/angular-google-analytics/dist/angular-google-analytics.js', // googleAnalyticsAngular
libJsSrcRoot + '/angular-utils-disqus/dirDisqus.js', // disqusAngular
libJsSrcRoot + '/bootstrap/dist/js/bootstrap.js', // bootstrap
libJsSrcRoot + '/respond/dest/respond.js', // respond
libJsSrcRoot + '/angular-bootstrap/ui-bootstrap-tpls.js', // bootstrapAngular
libJsSrcRoot + '/respond.js/dest/respond.js', // respond
libJsSrcRoot + '/angular-ui-bootstrap/dist/ui-bootstrap-tpls.js', // bootstrapAngular
libJsSrcRoot + '/highcharts/highcharts.src.js', // highcharts
libJsSrcRoot + '/highcharts-ng/dist/highcharts-ng.js', // highchartsAngular
libJsSrcRoot + '/toastr/toastr.js', // toastr
Expand All @@ -65,7 +65,7 @@ var libMinCss = 'lib.min.css',
libJsSrcRoot + '/bootstrap/dist/css/bootstrap.css', // bootstrap
libJsSrcRoot + '/font-awesome/css/font-awesome.css', // fontAwesome
libJsSrcRoot + '/breeze-client-labs/breeze.directives.css', // breezeDirectivesCss
libJsSrcRoot + '/toastr/toastr.css', // toastrCss
libJsSrcRoot + '/toastr/build/toastr.css', // toastrCss
],
libCssDest = './_system/css/lib';

Expand Down
1 change: 0 additions & 1 deletion ngClient/ngClient.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,6 @@
<Content Include="_system\views\resourcePool\resourcePoolManage.html" />
<Content Include="_system\views\resourcePool\resourcePoolView.html" />
<None Include="_system\css\main.css" />
<None Include="bower.json" />
<None Include="package.json" />
<None Include="Properties\PublishProfiles\wealth.pubxml" />
<None Include="Properties\PublishProfiles\wealth.test.pubxml" />
Expand Down
24 changes: 22 additions & 2 deletions ngClient/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
"name": "ASP.NET",
"private": true,
"devDependencies": {
"bower": "^1.7.9",
"brace-expansion": "^1.1.5",
"gulp": "^3.9.1",
"gulp-clean": "^0.3.1",
Expand All @@ -15,6 +14,27 @@
"gulp-tap": "^0.1.3",
"gulp-uglify": "^1.5.3",
"jshint": "^2.9.2",
"jshint-stylish": "^2.1.0"
"jshint-stylish": "^2.1.0",

"angular": "^1.5.0",
"angular-ui-bootstrap": "^1.2.1",
"angular-google-analytics": "^1.1.6",
"angular-mocks": "^1.5.0",
"angular-moment": "^1.0.0-beta.6",
"angular-route": "^1.5.0",
"angular-sanitize": "^1.5.0",
"angular-utils-disqus": "^1.0.0",
"bootstrap": "^3.3.6",
"breeze-client": "^1.5.7",
"breeze-client-labs": "^1.5.8",
"datajs": "^1.0.3",
"font-awesome": "^4.5.0",
"highcharts": "^4.2.3",
"highcharts-ng": "^0.0.11",
"jquery": "^2.2.2",
"moment": "^2.12.0",
"respond.js": "^1.4.2",
"source-map": "^0.5.2",
"toastr": "^2.1.2"
}
}

0 comments on commit f2561b7

Please sign in to comment.