Skip to content

Commit 049b49d

Browse files
committed
Removes npm-git.sh scripts (#4853)
1 parent 48e54d1 commit 049b49d

File tree

4 files changed

+21
-52
lines changed

4 files changed

+21
-52
lines changed

.travis.yml

+1-8
Original file line numberDiff line numberDiff line change
@@ -55,21 +55,14 @@ after_script:
5555

5656
jobs:
5757
include:
58-
# release on github latest branch
58+
# release on npm on tags
5959
- stage: release
6060
node_js: '8.10'
6161
env:
6262
before_script: skip
6363
after_script: skip
6464
script: skip
6565
deploy:
66-
- provider: script
67-
skip_cleanup: true
68-
script: ./resources/npm-git.sh && npm install -g https://github.com/parse-community/parse-server#latest
69-
on:
70-
branch:
71-
- master
72-
- 3.x
7366
- provider: npm
7467
skip_cleanup: true
7568
email:

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,14 @@
88

99
* Adds support for JS SDK 2.0 job status header
1010

11+
### 2.8.3
12+
[Full Changelog](https://github.com/parse-community/parse-server/compare/2.8.3...2.8.2)
13+
14+
#### Improvements:
15+
16+
* Removes npm-git scripts as npm supports using git repositories that build, thanks to [Florent Vilmart](https://github.com/flovilmart)
17+
18+
1119
### 2.8.2
1220
[Full Changelog](https://github.com/parse-community/parse-server/compare/2.8.2...2.8.1)
1321

README.md

+12-4
Original file line numberDiff line numberDiff line change
@@ -393,16 +393,24 @@ If you believe you've found an issue with Parse Server, make sure these boxes ar
393393

394394
# Want to ride the bleeding edge?
395395

396-
The `latest` branch in this repository is automatically maintained to be the last
397-
commit to `master` to pass all tests, in the same form found on npm. It is
398-
recommend to use builds deployed npm for many reasons, but if you want to use
396+
It is recommend to use builds deployed npm for many reasons, but if you want to use
399397
the latest not-yet-released version of parse-server, you can do so by depending
400398
directly on this branch:
401399

402400
```
403-
npm install parseplatform/parse-server.git#latest
401+
npm install parse-community/parse-server.git#master
404402
```
405403

404+
## Experimenting
405+
406+
You can also use your own forks, and work in progress branches by specifying them:
407+
408+
```
409+
npm install github:myUsername/parse-server#my-awesome-feature
410+
```
411+
412+
And don't forget, if you plan to deploy it remotely, you should run `npm install` with the `--save` option.
413+
406414
# Contributing
407415

408416
We really want Parse to be yours, to see it grow and thrive in the open source community. Please see the [Contributing to Parse Server guide](CONTRIBUTING.md).

resources/npm-git.sh

-40
This file was deleted.

0 commit comments

Comments
 (0)