mirror of
https://github.com/feathericons/feather.git
synced 2023-08-10 21:13:24 +03:00
chore: automate releases
This commit is contained in:
parent
1356b013b7
commit
adbc129119
11
.travis.yml
Normal file
11
.travis.yml
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
language: node_js
|
||||||
|
cache:
|
||||||
|
directories:
|
||||||
|
- node_modules
|
||||||
|
notifications:
|
||||||
|
email: false
|
||||||
|
node_js: 6
|
||||||
|
before_script:
|
||||||
|
- npm prune
|
||||||
|
after_success:
|
||||||
|
- npm run semantic-release
|
@ -1,9 +1,4 @@
|
|||||||
data_dir: .
|
|
||||||
exclude:
|
exclude:
|
||||||
- README.md
|
|
||||||
- CHANGELOG.md
|
|
||||||
- ISSUE_TEMPLATE.md
|
|
||||||
- LICENSE
|
|
||||||
- node_modules
|
- node_modules
|
||||||
- bin
|
- bin
|
||||||
- sandbox
|
- sandbox
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<header class="pv3 bb b--black-10">
|
<header class="pv3 bb b--black-10">
|
||||||
<div class="w-80 center flex justify-between items-center">
|
<div class="w-80 center flex justify-between items-center">
|
||||||
<h1 class="mv0 normal f3 lh-copy black-90">Feather <span class="f5 black-60">v{{ site.data.package.version }}</span></h1>
|
<h1 class="mv0 normal f3 lh-copy black-90">Feather</h1>
|
||||||
|
|
||||||
<ul class="list mv0 pl0 flex">
|
<ul class="list mv0 pl0 flex">
|
||||||
<li class="dn dib-ns"><a class="no-underline color-inherit dim" href="https://twitter.com/intent/tweet?text=Feather%20-%20Simply%20beautiful%20open%20source%20icons%20by%20%40colebemis%20https://feathericons.com" target="_blank">Tweet</a></li>
|
<li class="dn dib-ns"><a class="no-underline color-inherit dim" href="https://twitter.com/intent/tweet?text=Feather%20-%20Simply%20beautiful%20open%20source%20icons%20by%20%40colebemis%20https://feathericons.com" target="_blank">Tweet</a></li>
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
<h2 class="mt0 mb4 f2 fw3 tc lh-title black-90">Simply beautiful open source icons</h2>
|
<h2 class="mt0 mb4 f2 fw3 tc lh-title black-90">Simply beautiful open source icons</h2>
|
||||||
<a
|
<a
|
||||||
class="button white bg-accent dim br2"
|
class="button white bg-accent dim br2"
|
||||||
href="feather-{{ site.data.package.version }}.zip"
|
href="feather.zip"
|
||||||
download
|
download
|
||||||
onclick="ga('send', 'event', 'download', 'click', 'all');">
|
onclick="ga('send', 'event', 'download', 'click', 'all');">
|
||||||
Download
|
Download
|
||||||
|
@ -4,4 +4,4 @@
|
|||||||
version=$(grep '"version"' package.json | cut -d '"' -f4)
|
version=$(grep '"version"' package.json | cut -d '"' -f4)
|
||||||
|
|
||||||
# compress 'icons' directory into feather-[version].zip
|
# compress 'icons' directory into feather-[version].zip
|
||||||
zip -r feather-${version}.zip ./icons/
|
zip -r feather.zip ./icons/
|
||||||
|
19
package.json
19
package.json
@ -1,14 +1,27 @@
|
|||||||
{
|
{
|
||||||
"name": "feather-icons",
|
"name": "feather-icons",
|
||||||
"version": "2.1.0",
|
"version": "0.0.0-development",
|
||||||
"description": "Simply beautiful open source icons",
|
"description": "Simply beautiful open source icons",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
"commitmsg": "validate-commit-msg",
|
||||||
|
"cm": "git-cz",
|
||||||
"svgo": "for i in $(find icons/* -type d); do svgo --pretty --multipass --config=svgo-config.yml $i; done",
|
"svgo": "for i in $(find icons/* -type d); do svgo --pretty --multipass --config=svgo-config.yml $i; done",
|
||||||
"build": "npm run build-zip && jekyll build",
|
"build": "npm run build-zip && jekyll build",
|
||||||
"build-zip": "./bin/build-zip.sh"
|
"build-zip": "./bin/build-zip.sh",
|
||||||
|
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"svgo": "^0.7.2"
|
"commitizen": "^2.9.6",
|
||||||
|
"cz-conventional-changelog": "^2.0.0",
|
||||||
|
"husky": "^0.13.4",
|
||||||
|
"semantic-release": "^6.3.6",
|
||||||
|
"svgo": "^0.7.2",
|
||||||
|
"validate-commit-msg": "^2.12.1"
|
||||||
|
},
|
||||||
|
"config": {
|
||||||
|
"commitizen": {
|
||||||
|
"path": "cz-conventional-changelog"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
Loading…
Reference in New Issue
Block a user