Skip to content

Commit

Permalink
🚀 v0.9 release + upgrade packages to current versions (except microb…
Browse files Browse the repository at this point in the history
…undle)
  • Loading branch information
dandv committed Jan 6, 2019
1 parent 7968dab commit 7ca5ff1
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 12 deletions.
3 changes: 2 additions & 1 deletion .idea/jsLibraryMappings.xml

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

4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -183,7 +183,7 @@ To avoid both these issues, [defer](https://stackoverflow.com/questions/49804108
process.nextTick(() => stream.destroy());
```

After you've destroyed a stream, you can create another one - see the ["should switch from one stream to another" test](blob/master/test/stream.test.js#L131).
After you've destroyed a stream, you can create another one - see the ["should switch from one stream to another" test](https://github.com/draftbit/twitter-lite/blob/9e0845585c756aee10e8b0acaabfbc3e4f32b81c/test/stream.test.js#L131).

## Methods

Expand Down Expand Up @@ -296,7 +296,7 @@ With the library nearing v1.0, contributions are welcome! Areas especially in ne
7. Make sure all tests pass.
8. `git add` the changed files
9. `npm run precommit` to lint with [prettier](https://www.npmjs.com/package/prettier)
10. Commit using a [descriptive message](https://chris.beams.io/posts/git-commit/) (please squash all your commits into one!)
10. Commit using a [descriptive message](https://chris.beams.io/posts/git-commit/) (please squash commits into one per fix/improvement!)
11. `git push` and submit your PR!

## Credits
Expand Down
18 changes: 9 additions & 9 deletions package.json
@@ -1,15 +1,15 @@
{
"name": "twitter-lite",
"version": "0.8.2",
"version": "0.9.0",
"description": "A tiny, full-featured client / server library for the Twitter API",
"source": [
"twitter.js",
"stream.js"
],
"main": "dist/twitter.js",
"module": "dist/twitter.m.js",
"repository": "preposterous/twitter-lite",
"homepage": "https://github.com/preposterous/twitter-lite",
"repository": "draftbit/twitter-lite",
"homepage": "https://github.com/draftbit/twitter-lite",
"author": "Peter Piekarczyk <peter@peterp.me>",
"license": "MIT",
"files": [
Expand All @@ -28,18 +28,18 @@
"twitter api"
],
"dependencies": {
"cross-fetch": "^1.1.1",
"cross-fetch": "^3.0.0",
"oauth-1.0a": "^2.2.4"
},
"devDependencies": {
"@types/jest": "^23.3.10",
"dotenv": "^5.0.1",
"dotenv": "^6.2.0",
"flow-bin": "^0.68.0",
"husky": "^0.14.3",
"jest": "^22.4.4",
"lint-staged": "^7.0.5",
"jest": "^23.6.0",
"lint-staged": "^8.1.0",
"microbundle": "^0.4.3",
"prettier": "^1.11.1"
"prettier": "^1.15.3"
},
"scripts": {
"prepare": "microbundle",
Expand All @@ -48,7 +48,7 @@
"precommit": "lint-staged"
},
"lint-staged": {
"*.{js,json,css,md}": [
"*.{js,md}": [
"prettier --write",
"git add"
]
Expand Down

0 comments on commit 7ca5ff1

Please sign in to comment.