Skip to content

Commit

Permalink
Scaffold adjustment
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick Lammertyn committed Mar 15, 2016
1 parent 74d32c4 commit ddff49f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/scaffold.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ function Scaffold($){
Scaffold.prototype.prepare = function() {

this.log.info('ensuring basic structure');

shell.mkdir('-p' , this.$.env.app.bin);
shell.mkdir('-p' , this.$.env.core.tmp);
shell.mkdir('-p', this.$.env.core.root);
Expand All @@ -35,7 +35,7 @@ Scaffold.prototype.prepare = function() {
fs.writeFileSync(package, JSON.stringify({
name: 'my-electrified-app',
main: 'index.js',
dependencies: { electrify: this.$.env.version }
dependencies: { electrify: '2.1.5' }
}, null, 2));
}

Expand All @@ -51,4 +51,4 @@ Scaffold.prototype.prepare = function() {
'bin', 'db', 'node_modules'
].join('\n'));
}
};
};

0 comments on commit ddff49f

Please sign in to comment.