Skip to content

Commit

Permalink
Remove unnecessary change of app name in
Browse files Browse the repository at this point in the history
package.json templates
  • Loading branch information
JayGray committed May 12, 2015
1 parent 97e4075 commit afc33f6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions app/templates/_package.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
{
"name": "<%= _.slugify(appName) %>",
"name": "<%= appName %>",
"version": "0.0.0",
"description": "<%= description %>",
"keywords": [],
<% if(github) {%>
"homepage": "<%= githubUrl %>/<%= _.slugify(appName) %>",
"bugs": "<%= githubUrl %>/<%= _.slugify(appName) %>/issues",
"homepage": "<%= githubUrl %>/<%= appName %>",
"bugs": "<%= githubUrl %>/<%= appName %>/issues",
"author": {
"name": "<%= realname %>",
"email": "",
"url": "<%= githubUrl %>"
},
"repository": {
"type": "git",
"url": "git://github.com/<%= githubUser %>/<%= _.slugify(appName) %>.git"
"url": "git://github.com/<%= githubUser %>/<%= appName %>.git"
},
<% } %>
"dependencies": {},
Expand Down
4 changes: 2 additions & 2 deletions app/templates/app/_package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "<%= _.slugify(appName) %>",
"name": "<%= appName %>",
"main": "views/index.html",
"version": "0.0.1",
"single-instance": true,
Expand All @@ -12,4 +12,4 @@
"toolbar": false
},
"chromium-args": "--child-clean-exit"
}
}

0 comments on commit afc33f6

Please sign in to comment.