Commit 20f673d2 authored by Kristóf Poduszló's avatar Kristóf Poduszló Committed by Dan Abramov
Browse files

Fix default package version added by global CLI (#491)

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)
parent f1b6168a
No related merge requests found
Showing with 1 addition and 1 deletion
+1 -1
...@@ -84,7 +84,7 @@ function createApp(name, verbose, version) { ...@@ -84,7 +84,7 @@ function createApp(name, verbose, version) {
var packageJson = { var packageJson = {
name: appName, name: appName,
version: '0.0.1', version: '0.1.0',
private: true, private: true,
}; };
fs.writeFileSync( fs.writeFileSync(
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment