Skip to content
This repository has been archived by the owner on May 30, 2022. It is now read-only.

Commit

Permalink
chore(grunt): Fix task after updating package name
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianlee44 committed May 25, 2016
1 parent 541fad8 commit 36986a0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion misc/grunt/contrib-concat.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ module.exports = function(grunt) {
footer: "\n})(window, window.angular);"
},
lib: {
dest: "lib/<%= pkg.name.toLowerCase() %>.js",
dest: "lib/macgyver.js",
src: "<%= buildConf.full %>"
}
});
Expand Down
4 changes: 2 additions & 2 deletions misc/grunt/contrib-uglify.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ module.exports = function(grunt) {
dist: {
files: [
{
src: "lib/<%= pkg.name.toLowerCase() %>.js",
dest: "dist/<%= pkg.name.toLowerCase() %>.min.js"
src: "lib/macgyver.js",
dest: "dist/macgyver.min.js"
}
]
}
Expand Down

0 comments on commit 36986a0

Please sign in to comment.