Skip to content

Commit

Permalink
Fix default package version added by global CLI (#491)
Browse files Browse the repository at this point in the history
According to the official SemVer FAQ, versioning should start at 0.1.0 (http://semver.org/#how-should-i-deal-with-revisions-in-the-0yz-initial-development-phase)
  • Loading branch information
kripod authored and gaearon committed Aug 25, 2016
1 parent f1b6168 commit 20f673d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion global-cli/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ function createApp(name, verbose, version) {

var packageJson = {
name: appName,
version: '0.0.1',
version: '0.1.0',
private: true,
};
fs.writeFileSync(
Expand Down

0 comments on commit 20f673d

Please sign in to comment.