Skip to content

Commit

Permalink
Name in package.json cannot contain spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
gregoiresage authored Jul 7, 2016
1 parent ebf3ccd commit 7c9b2ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pebble_tool/commands/sdk/project/convert.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def __call__(self, args):

def _convert_to_npm(self):
new_info = {
'name': self.project.short_name,
'name': self.project.short_name.replace(' ',''),
'author': self.project.company_name,
'version': self.project.version + '.0',
'private': True,
Expand Down

0 comments on commit 7c9b2ac

Please sign in to comment.