Skip to content

Commit

Permalink
Update build script and CONTRIBUTING doc
Browse files Browse the repository at this point in the history
  • Loading branch information
tbranyen committed May 8, 2020
1 parent 7dc6653 commit 231d6f5
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
18 changes: 17 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,22 @@ lerna publish

Enter in your new version (using custom), unless you see it listed.

### Take a deep breath
### Update website

The website pulls version information from the package.json files. The version
gets bumped from the previous command. Now you need to run:

```sh
lerna run generate
```

To get the latest docs files built. Commit and push these:

```sh
git commit -am"Update website to 1.0.0-beta.9"
git push
```

### Take a bow

You've earned it.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"version": "1.0.0-beta.16",
"description": "Build web user interfaces with JavaScript",
"scripts": {
"build": "lerna run build && lerna run min && lerna run build-min && lerna run generate",
"build": "lerna run build && lerna run min && lerna run generate",
"test": "lerna run test",
"test-cov": "lerna run test-cov",
"postinstall": "lerna bootstrap --no-ci"
Expand Down

0 comments on commit 231d6f5

Please sign in to comment.