-
-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Vic Shóstak
committed
Jan 3, 2020
1 parent
ee94328
commit a5eeb92
Showing
5 changed files
with
38 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
.PHONY: gh-pages | ||
|
||
gh-pages: | ||
rm -rf ./site \ | ||
&& mkdocs build \ | ||
&& git checkout gh-pages \ | ||
&& cp -R ./site/* ./ \ | ||
&& rm -rf ./site \ | ||
&& git add . \ | ||
&& git commit -m "Update docs" | ||
@echo "[✔️] Docs was created and wait for deploy to gh-pages branch!" |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,12 +25,6 @@ Vue.js-ready™ component. Simple install, **extensive documentation**, develope | |
|
||
Beautiful button design **already included**. Just choose one, add attribute to component and save! | ||
|
||
## Installation | ||
|
||
``` bash | ||
npm install --save vue-goodshare | ||
``` | ||
|
||
## Developers | ||
|
||
- Idea and active development by [Vic Shóstak](https://github.com/koddr) (aka Koddr). | ||
|
@@ -41,11 +35,14 @@ If you want to say «thank you» or/and support active development `vue-goodshar | |
|
||
1. Add a GitHub Star to project. | ||
2. Twit about project [on your Twitter](https://twitter.com/intent/tweet?text=I%20found%20%40vuejs%20component%20for%20%23share%20a%20link%20from%20your%20%23website%20to%20%23social%20networks%20and%20mobile%20%23messengers%20%F0%9F%91%8D&url=https%3A%2F%2Fgithub.com%2Fkoddr%2Fvue-goodshare). | ||
3. Help project with some money, become a Patron: | ||
3. Donate some money to project author via PayPal: [@paypal.me/koddr](https://paypal.me/koddr?locale.x=en_EN). | ||
4. Join DigitalOcean at our [referral link](https://m.do.co/c/b41859fa9b6e) (your profit is **$100** and we get $25). | ||
|
||
Thanks for your support! 😘 Together, we make this project better every day. | ||
|
||
### Stargazers over time | ||
|
||
<a href="https://www.patreon.com/bePatron?u=20124951"> | ||
<img width="200px" src="https://c5.patreon.com/external/logo/[email protected]" alt="Become a Patron!"/> | ||
</a> | ||
[![Stargazers over time](https://starchart.cc/koddr/vue-goodshare.svg)](https://starchart.cc/koddr/vue-goodshare) | ||
|
||
## License | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,29 @@ | ||
{ | ||
"name": "vue-goodshare", | ||
"version": "1.3.2", | ||
"version": "1.3.3", | ||
"description": "Vue.js component for social share. A simple way to share a link on the pages of your website in the most popular (and not so) social networks.", | ||
"main": "src/VueGoodshare.vue", | ||
"scripts": { | ||
"docs:prepare": "gitbook install ./src/docs", | ||
"docs:build": "npm run docs:prepare && rm -rf ./docs/* && rm -rf ./src/docs/_book && gitbook build ./src/docs && cp -rf ./src/docs/_book/* ./docs", | ||
"docs:watch": "npm run docs:prepare && gitbook serve ./src/docs" | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"dependencies": { | ||
"vue": "^2.6.11" | ||
}, | ||
"devDependencies": { | ||
"css-loader": "^3.4.1", | ||
"node-sass": "^4.13.0", | ||
"sass-loader": "^8.0.0", | ||
"vue-style-loader": "^4.1.2" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/koddr/vue-goodshare.git" | ||
}, | ||
"dependencies": { | ||
"vue": "^2.6.10" | ||
}, | ||
"devDependencies": { | ||
"css-loader": "^2.1.1", | ||
"gitbook-cli": "^2.3.2", | ||
"node-sass": "^4.11.0", | ||
"sass-loader": "^6.0.7", | ||
"vue-style-loader": "^3.1.2" | ||
"bugs": { | ||
"url": "https://github.com/koddr/vue-goodshare/issues", | ||
"email": "[email protected]" | ||
}, | ||
"homepage": "https://github.com/koddr/vue-goodshare#readme", | ||
"keywords": [ | ||
"social share buttons", | ||
"vue share social", | ||
|
@@ -30,11 +32,6 @@ | |
"vue share", | ||
"share" | ||
], | ||
"author": "Vic Shóstak <[email protected]> (https://truewebartisans.com)", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/koddr/vue-goodshare/issues", | ||
"email": "[email protected]" | ||
}, | ||
"homepage": "https://koddr.github.io/vue-goodshare/" | ||
"author": "Vic Shóstak <[email protected]> (https://1wa.co)", | ||
"license": "MIT" | ||
} |