Skip to content

Commit

Permalink
Support installing from branch (#177)
Browse files Browse the repository at this point in the history
* Install From Branch

* Update README.md
  • Loading branch information
dplewis authored Oct 19, 2020
1 parent 3572b3d commit b9b623d
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,19 @@ const server = new ParseServer(options);

/* continue with the initialization of parse-server */
```

## Want to ride the bleeding edge?

We recommend using the most recent tagged build published to npm for production. However, you can test not-yet-released versions of the parse-server-push-adapter by referencing specific branches in your `package.json`. For example, to use the master branch:

```
npm install parse-community/parse-server-push-adapter.git#master
```

### Experimenting

You can also use your own forks, and work in progress branches by specifying them:

```
npm install github:myUsername/parse-server-push-adapter#my-awesome-feature
```
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"scripts": {
"build": "./node_modules/.bin/babel src/ -d lib/",
"test": "TESTING=1 nyc ./node_modules/.bin/jasmine",
"prepublish": "npm run build"
"prepare": "npm run build"
},
"keywords": [
"parse-server",
Expand Down

0 comments on commit b9b623d

Please sign in to comment.