mirror of
https://github.com/thangisme/notes.git
synced 2025-01-02 20:46:32 -05:00
Merge pull request #132 from pmarsceill/v0.2.5-release
v0.2.5 release branch
This commit is contained in:
commit
721484a26e
18
.github/main.workflow
vendored
18
.github/main.workflow
vendored
@ -1,16 +1,26 @@
|
|||||||
workflow "Publish to RubyGems" {
|
workflow "Publish to RubyGems" {
|
||||||
on = "release"
|
on = "release"
|
||||||
resolves = ["scarhand/actions-ruby@master"]
|
resolves = [
|
||||||
|
"Publish to GPR",
|
||||||
|
"Publish to Ruby Gems",
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
action "Build from Gemspec" {
|
action "Build from Gemspec" {
|
||||||
uses = "scarhand/actions-ruby@master"
|
uses = "scarhand/actions-ruby@master"
|
||||||
runs = "build *.gemspec"
|
runs = "gem build just-the-docs.gemspec"
|
||||||
}
|
}
|
||||||
|
|
||||||
action "scarhand/actions-ruby@master" {
|
action "Publish to Ruby Gems" {
|
||||||
uses = "scarhand/actions-ruby@master"
|
uses = "scarhand/actions-ruby@master"
|
||||||
needs = ["Build from Gemspec"]
|
needs = ["Build from Gemspec"]
|
||||||
runs = "push *.gem"
|
runs = "gem push *.gem"
|
||||||
secrets = ["RUBYGEMS_AUTH_TOKEN"]
|
secrets = ["RUBYGEMS_AUTH_TOKEN"]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
action "Publish to GPR" {
|
||||||
|
uses = "scarhand/actions-ruby@master"
|
||||||
|
needs = ["Build from Gemspec"]
|
||||||
|
secrets = ["GPR_AUTH_TOKEN"]
|
||||||
|
runs = " gem push --key [\"GPR_AUTH_TOKEN\"] --host https://rubygems.pkg.github.com/pmarsceill *.gem"
|
||||||
|
}
|
||||||
|
@ -1,11 +1,17 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
|
||||||
{% if page.description %}
|
|
||||||
<meta name="Description" content="{{ page.description }}">
|
{% if site.plugins.jekyll-seo == nil %}
|
||||||
|
<title>{{ page.title }} - {{ site.title }}</title>
|
||||||
|
|
||||||
|
{% if page.description %}
|
||||||
|
<meta name="Description" content="{{ page.description }}">
|
||||||
|
{% endif %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
<title>{{ page.title }} - {{ site.title }}</title>
|
<link rel="shortcut icon" href="{{ "favicon.ico" | absolute_url }}" type="image/x-icon">
|
||||||
|
|
||||||
<link rel="stylesheet" href="{{ "/assets/css/just-the-docs.css" | absolute_url }}">
|
<link rel="stylesheet" href="{{ "/assets/css/just-the-docs.css" | absolute_url }}">
|
||||||
|
|
||||||
{% if site.ga_tracking != nil %}
|
{% if site.ga_tracking != nil %}
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
//
|
//
|
||||||
// Typography
|
// Typography
|
||||||
//
|
//
|
||||||
// stylelint-disable primer/selector-no-utility, selector-no-type, selector-max-type
|
// stylelint-disable primer/selector-no-utility, primer/no-override, selector-no-type, selector-max-type
|
||||||
|
|
||||||
h1,
|
h1,
|
||||||
.text-alpha {
|
.text-alpha {
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
// stylelint-disable primer/selector-no-utility
|
// stylelint-disable primer/selector-no-utility, primer/no-override
|
||||||
//
|
//
|
||||||
// Utility classes for layout
|
// Utility classes for layout
|
||||||
//
|
//
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
// Utility classes for lists
|
// Utility classes for lists
|
||||||
//
|
//
|
||||||
|
|
||||||
// stylelint-disable primer/selector-no-utility
|
// stylelint-disable primer/selector-no-utility, primer/no-override
|
||||||
|
|
||||||
.list-style-none {
|
.list-style-none {
|
||||||
padding: 0 !important;
|
padding: 0 !important;
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
//
|
//
|
||||||
|
|
||||||
// scss-lint:disable SpaceAfterPropertyName
|
// scss-lint:disable SpaceAfterPropertyName
|
||||||
// stylelint-disable block-opening-brace-space-after, block-opening-brace-space-before, primer/selector-no-utility
|
// stylelint-disable block-opening-brace-space-after, block-opening-brace-space-before, primer/selector-no-utility, primer/no-override
|
||||||
|
|
||||||
// Margin spacer utilities
|
// Margin spacer utilities
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
// Utility classes for typography
|
// Utility classes for typography
|
||||||
//
|
//
|
||||||
|
|
||||||
// stylelint-disable primer/selector-no-utility
|
// stylelint-disable primer/selector-no-utility, primer/no-override
|
||||||
|
|
||||||
.fs-1 {
|
.fs-1 {
|
||||||
@include fs-1;
|
@include fs-1;
|
||||||
|
BIN
favicon.ico
Normal file
BIN
favicon.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 32 KiB |
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Gem::Specification.new do |spec|
|
Gem::Specification.new do |spec|
|
||||||
spec.name = "just-the-docs"
|
spec.name = "just-the-docs"
|
||||||
spec.version = "0.2.4"
|
spec.version = "0.2.5"
|
||||||
spec.authors = ["Patrick Marsceill"]
|
spec.authors = ["Patrick Marsceill"]
|
||||||
spec.email = ["patrick.marsceill@gmail.com"]
|
spec.email = ["patrick.marsceill@gmail.com"]
|
||||||
|
|
||||||
|
14
package-lock.json
generated
14
package-lock.json
generated
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "just-the-docs",
|
"name": "just-the-docs",
|
||||||
"version": "0.2.4",
|
"version": "0.2.5",
|
||||||
"lockfileVersion": 1,
|
"lockfileVersion": 1,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
@ -177,9 +177,9 @@
|
|||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"@primer/css": {
|
"@primer/css": {
|
||||||
"version": "12.2.3",
|
"version": "12.3.1",
|
||||||
"resolved": "https://registry.npmjs.org/@primer/css/-/css-12.2.3.tgz",
|
"resolved": "https://registry.npmjs.org/@primer/css/-/css-12.3.1.tgz",
|
||||||
"integrity": "sha512-IhQHkxYiHBt0erXoPADWqgjcnM73NVK3I9tJX112JofwErhWsrJZbtvlpgIQ9WXDEsq74FEh1umSMQm5QuhYug=="
|
"integrity": "sha512-W9khweOSS0VwjGcw/p9t2L4N+uzMHpelsp/lihgQ+g2An54IYuTEUX3RT42Wp++3DQTPGapEMmXFnLI9cTBL4w=="
|
||||||
},
|
},
|
||||||
"@types/events": {
|
"@types/events": {
|
||||||
"version": "3.0.0",
|
"version": "3.0.0",
|
||||||
@ -4193,9 +4193,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"stylelint-config-primer": {
|
"stylelint-config-primer": {
|
||||||
"version": "6.0.0",
|
"version": "7.0.0",
|
||||||
"resolved": "https://registry.npmjs.org/stylelint-config-primer/-/stylelint-config-primer-6.0.0.tgz",
|
"resolved": "https://registry.npmjs.org/stylelint-config-primer/-/stylelint-config-primer-7.0.0.tgz",
|
||||||
"integrity": "sha512-sHTgPYNGWMDMq7BMEFLM+6K3M7f1la5saJEdQNPrhjWxhzvWt+r2OaHuKklkgeM6X6yK8+2+UWKKcuIGBCNjOA==",
|
"integrity": "sha512-PpQTJK9WYEoPRIpQtshKeslcloxLwRWTrF+lLgWKxRNsD/J0xuW+ucykqHYeO5+fJALWgFS06MdKQD/eg0Iycw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"requires": {
|
"requires": {
|
||||||
"stylelint-no-unsupported-browser-features": "^1.0.0",
|
"stylelint-no-unsupported-browser-features": "^1.0.0",
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
{
|
{
|
||||||
"name": "just-the-docs",
|
"name": "just-the-docs",
|
||||||
"version": "0.2.4",
|
"version": "0.2.5",
|
||||||
"description": "A modern Jekyll theme for documentation",
|
"description": "A modern Jekyll theme for documentation",
|
||||||
"repository": "pmarsceill/just-the-docs",
|
"repository": "pmarsceill/just-the-docs",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"bugs": "https://github.com/pmarsceill/just-the-docs/issues",
|
"bugs": "https://github.com/pmarsceill/just-the-docs/issues",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"stylelint": "^10.0.1",
|
"stylelint": "^10.0.1",
|
||||||
"stylelint-config-primer": "^6.0.0",
|
"stylelint-config-primer": "^7.0.0",
|
||||||
"stylelint-selector-no-utility": "^4.0.0"
|
"stylelint-selector-no-utility": "^4.0.0"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@primer/css": "^12.2.3"
|
"@primer/css": "^12.3.1"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "stylelint '**/*.scss'"
|
"test": "stylelint '**/*.scss'"
|
||||||
|
Loading…
Reference in New Issue
Block a user