Skip to content

Commit

Permalink
Move csv-load-sync to devDependencies. Remove semicolons to fix test …
Browse files Browse the repository at this point in the history
…warnings.
  • Loading branch information
jfrumar committed Mar 10, 2016
1 parent fb78b7c commit d435813
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions angular-timezone-selector.js
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,8 @@ angular.module('angular-timezone-selector', [])
// the format used in timezoneFactory
var extraTZs = _.filter(timezones, { 'id': jstz.determine().name() })
} else {
var localUTC = 'UTC' + moment().format('Z');
extraTZs = _.filter(timezones, {'offset': localUTC});
var localUTC = 'UTC' + moment().format('Z')
extraTZs = _.filter(timezones, {'offset': localUTC})
}

data.splice(0, 0, {
Expand Down
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"homepage": "https://github.com/mishguruorg/angular-timezone-selector",
"devDependencies": {
"csv": "^0.4.1",
"csv-load-sync": "0.0.3",
"csv-load-sync": "^1.0.0",
"grunt": "latest",
"grunt-contrib-uglify": "latest",
"grunt-string-replace": "~1.0.0",
Expand All @@ -32,7 +32,6 @@
"uglify-js": "latest"
},
"dependencies": {
"csv-load-sync": "^1.0.0",
"grunt-autoprefixer": "^3.0.3",
"grunt-contrib-copy": "^0.8.0",
"grunt-contrib-cssmin": "^0.12.3",
Expand Down

0 comments on commit d435813

Please sign in to comment.