This repository has been archived by the owner on May 12, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 282
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #135 from Kikobeats/beta
2.6.0: Some Improvements
- Loading branch information
Showing
24 changed files
with
581 additions
and
349 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,32 @@ | ||
files: [ | ||
"package.json" | ||
"bower.json" | ||
'package.json' | ||
'bower.json' | ||
] | ||
|
||
plugins: | ||
|
||
prerelease: | ||
|
||
'Linting config files': | ||
plugin: 'bumped-finepack' | ||
|
||
postrelease: | ||
|
||
'Compile browser version': | ||
'Compiling browser version': | ||
plugin: 'bumped-terminal' | ||
command: 'gulp build' | ||
|
||
'Generating CHANGELOG file': | ||
plugin: 'bumped-changelog' | ||
|
||
'Commit the new version': | ||
'Commiting new version': | ||
plugin: 'bumped-terminal' | ||
command: 'git add CHANGELOG.md bower.json package.json assets/css/uno-zen.css assets/js/uno-zen.js && git commit -m "$newVersion releases" && git push origin master' | ||
|
||
'Publishing tag at Github': | ||
plugin: 'bumped-terminal' | ||
command: 'git tag $newVersion && git push origin $newVersion' | ||
|
||
'Publishing at NPM': | ||
plugin: 'bumped-terminal' | ||
command: 'git add . && git commit -m "$newVersion releases"' | ||
command: 'npm publish' |
Large diffs are not rendered by default.
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
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
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
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
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 |
---|---|---|
@@ -1,11 +1,19 @@ | ||
.pagination { | ||
margin: 0 0 2.5rem; | ||
} | ||
.posts.index { | ||
margin-right: 1rem; | ||
margin-left: 1rem; | ||
|
||
font-size: .8rem; | ||
.posts { | ||
|
||
color: $gray-dark; | ||
&.index { | ||
font-size: .8rem; | ||
color: $gray-dark; | ||
} | ||
|
||
&.newer { | ||
margin-right: 1rem; | ||
} | ||
|
||
&.older { | ||
margin-left: 1rem; | ||
} | ||
} |
Oops, something went wrong.