Skip to content

Commit

Permalink
Merge pull request #11 from beeman/gruntfile
Browse files Browse the repository at this point in the history
Update ngmin to ng-annotate cause of warning during npm install
  • Loading branch information
Amith92 committed Mar 18, 2015
2 parents 99eb39b + 9091ebb commit 2f82c5b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -282,10 +282,10 @@ module.exports = function (grunt) {
}
},

// ngmin tries to make the code safe for minification automatically by
// ngAnnotate tries to make the code safe for minification automatically by
// using the Angular long form for dependency injection. It doesn't work on
// things like resolve or inject so those have to be done manually.
ngmin: {
ngAnnotate: {
dist: {
files: [{
expand: true,
Expand Down Expand Up @@ -397,7 +397,7 @@ module.exports = function (grunt) {
'concurrent:dist',
'copy:dist',
'cssmin',
'ngmin',
'ngAnnotate',
'uglify',
'htmlmin'
]);
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "sbadmin",
"name": "sb-admin",
"version": "0.0.0",
"repository": {
"type": "git",
Expand All @@ -24,7 +24,7 @@
"grunt-google-cdn": "^0.4.0",
"grunt-karma": "^0.10.1",
"grunt-newer": "^0.7.0",
"grunt-ngmin": "^0.0.3",
"grunt-ng-annotate": "^0.10.0",
"grunt-svgmin": "^0.4.0",
"grunt-usemin": "^2.1.1",
"grunt-wiredep": "^1.7.0",
Expand Down

0 comments on commit 2f82c5b

Please sign in to comment.