-
Notifications
You must be signed in to change notification settings - Fork 676
Activating Open Collective #428
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
</p> | ||
<p align="center"> | ||
<a href="https://travis-ci.org/jdneo/vscode-leetcode"> | ||
<img src="https://img.shields.io/travis/jdneo/vscode-leetcode.svg?style=flat-square" alt=""> | ||
<a href="https://opencollective.com/vscode-leetcode" alt="Financial Contributors on Open Collective"><img src="https://opencollective.com/vscode-leetcode/all/badge.svg?label=financial+contributors" /></a> <img src="https://img.shields.io/travis/jdneo/vscode-leetcode.svg?style=flat-square" alt=""> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Could we use the badge from: |
||
</a> | ||
<a href="https://gitter.im/vscode-leetcode/Lobby"> | ||
<img src="https://img.shields.io/gitter/room/jdneo/vscode-leetcode.svg?style=flat-square" alt=""> | ||
|
@@ -141,3 +141,33 @@ Refer to [CHANGELOG](https://github.com/jdneo/vscode-leetcode/blob/master/CHANGE | |
|
||
- This extension is based on [@skygragon](https://github.com/skygragon)'s [leetcode-cli](https://github.com/skygragon/leetcode-cli) open source project. | ||
- Special thanks to our [contributors](https://github.com/jdneo/vscode-leetcode/blob/master/ACKNOWLEDGEMENTS.md). | ||
|
||
## Contributors | ||
|
||
### Code Contributors | ||
|
||
This project exists thanks to all the people who contribute. [[Contribute](CONTRIBUTING.md)]. | ||
<a href="https://github.com/jdneo/vscode-leetcode/graphs/contributors"><img src="https://opencollective.com/vscode-leetcode/contributors.svg?width=890&button=false" /></a> | ||
|
||
### Financial Contributors | ||
|
||
Become a financial contributor and help us sustain our community. [[Contribute](https://opencollective.com/vscode-leetcode/contribute)] | ||
|
||
#### Individuals | ||
|
||
<a href="https://opencollective.com/vscode-leetcode"><img src="https://opencollective.com/vscode-leetcode/individuals.svg?width=890"></a> | ||
|
||
#### Organizations | ||
|
||
Support this project with your organization. Your logo will show up here with a link to your website. [[Contribute](https://opencollective.com/vscode-leetcode/contribute)] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Cool list here, may I ask how to update this list? |
||
|
||
<a href="https://opencollective.com/vscode-leetcode/organization/0/website"><img src="https://opencollective.com/vscode-leetcode/organization/0/avatar.svg"></a> | ||
<a href="https://opencollective.com/vscode-leetcode/organization/1/website"><img src="https://opencollective.com/vscode-leetcode/organization/1/avatar.svg"></a> | ||
<a href="https://opencollective.com/vscode-leetcode/organization/2/website"><img src="https://opencollective.com/vscode-leetcode/organization/2/avatar.svg"></a> | ||
<a href="https://opencollective.com/vscode-leetcode/organization/3/website"><img src="https://opencollective.com/vscode-leetcode/organization/3/avatar.svg"></a> | ||
<a href="https://opencollective.com/vscode-leetcode/organization/4/website"><img src="https://opencollective.com/vscode-leetcode/organization/4/avatar.svg"></a> | ||
<a href="https://opencollective.com/vscode-leetcode/organization/5/website"><img src="https://opencollective.com/vscode-leetcode/organization/5/avatar.svg"></a> | ||
<a href="https://opencollective.com/vscode-leetcode/organization/6/website"><img src="https://opencollective.com/vscode-leetcode/organization/6/avatar.svg"></a> | ||
<a href="https://opencollective.com/vscode-leetcode/organization/7/website"><img src="https://opencollective.com/vscode-leetcode/organization/7/avatar.svg"></a> | ||
<a href="https://opencollective.com/vscode-leetcode/organization/8/website"><img src="https://opencollective.com/vscode-leetcode/organization/8/avatar.svg"></a> | ||
<a href="https://opencollective.com/vscode-leetcode/organization/9/website"><img src="https://opencollective.com/vscode-leetcode/organization/9/avatar.svg"></a> |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -660,7 +660,7 @@ | |
"vscode:prepublish": "npm run compile", | ||
"compile": "tsc -p ./", | ||
"watch": "tsc -watch -p ./", | ||
"postinstall": "node ./node_modules/vscode/bin/install", | ||
"postinstall": "node ./node_modules/vscode/bin/install && opencollective-postinstall", | ||
"test": "npm run compile && node ./node_modules/vscode/bin/test", | ||
"lint": "tslint --project tsconfig.json -e src/*.d.ts -t verbose" | ||
}, | ||
|
@@ -681,8 +681,13 @@ | |
"highlight.js": "^9.15.6", | ||
"lodash": "^4.17.13", | ||
"markdown-it": "^8.4.2", | ||
"opencollective-postinstall": "^2.0.2", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can we move this dependency into the "devDependencies"? |
||
"require-from-string": "^2.0.2", | ||
"unescape-js": "^1.1.1", | ||
"vsc-leetcode-cli": "2.6.10" | ||
}, | ||
"collective": { | ||
"type": "opencollective", | ||
"url": "https://opencollective.com/vscode-leetcode" | ||
} | ||
} | ||
} |