Skip to content

Commit

Permalink
Build: Use independent versioning for packages
Browse files Browse the repository at this point in the history
  • Loading branch information
gziolo committed May 11, 2018
1 parent 2be3596 commit 8f022b8
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const { escapeRegExp } = require( 'lodash' );
/**
* Internal dependencies
*/
const { version } = require( './lerna' );
const { version } = require( './package' );

/**
* Regular expression string matching a SemVer string with equal major/minor to
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@
"packages": [
"packages/*"
],
"version": "2.8.0"
"version": "independent"
}
3 changes: 2 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"name": "gutenberg",
"version": "2.8.0",
"private": true,
"description": "A new WordPress editor experience",
"repository": "git+https://github.com/WordPress/gutenberg.git",
Expand Down
2 changes: 1 addition & 1 deletion packages/date/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ Date module for WordPress.
Install the module

```bash
npm install @wordpress/date --save
npm install @wordpress/date@next --save
```

0 comments on commit 8f022b8

Please sign in to comment.