Merge pull request #305 from pmarsceill/v0.2.8
v0.2.8
No related branches found
No related tags found
Showing
- .github/workflows/ci.yml 17 additions, 4 deletions.github/workflows/ci.yml
- just-the-docs.gemspec 5 additions, 5 deletionsjust-the-docs.gemspec
- lib/tasks/search.rake 2 additions, 2 deletionslib/tasks/search.rake
- package-lock.json 221 additions, 33 deletionspackage-lock.json
- package.json 3 additions, 3 deletionspackage.json
... | @@ -2,7 +2,7 @@ | ... | @@ -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.7" | spec.version = "0.2.8" | ||
spec.authors = ["Patrick Marsceill"] | spec.authors = ["Patrick Marsceill"] | ||
spec.email = ["patrick.marsceill@gmail.com"] | spec.email = ["patrick.marsceill@gmail.com"] | ||
... | @@ -12,10 +12,10 @@ Gem::Specification.new do |spec| | ... | @@ -12,10 +12,10 @@ Gem::Specification.new do |spec| |
spec.files = `git ls-files -z`.split("\x0").select { |f| f.match(%r{^(assets|bin|_layouts|_includes|lib|Rakefile|_sass|LICENSE|README)}i) } | spec.files = `git ls-files -z`.split("\x0").select { |f| f.match(%r{^(assets|bin|_layouts|_includes|lib|Rakefile|_sass|LICENSE|README)}i) } | ||
spec.executables << 'just-the-docs' | spec.executables << 'just-the-docs' | ||
spec.add_runtime_dependency "jekyll", "~> 3.8.5" | spec.add_runtime_dependency "bundler", "~> 2.1.4" | ||
spec.add_runtime_dependency "jekyll", ">= 3.8.5", "< 4.1.0" | |||
spec.add_runtime_dependency "jekyll-seo-tag", "~> 2.0" | spec.add_runtime_dependency "jekyll-seo-tag", "~> 2.0" | ||
spec.add_runtime_dependency "rake", "~> 12.3.1" | spec.add_runtime_dependency "rake", ">= 12.3.1", "< 13.1.0" | ||
spec.add_development_dependency "bundler", "~> 2.0.1" | |||
end | end |
{ | { | ||
"name": "just-the-docs", | "name": "just-the-docs", | ||
"version": "0.2.7", | "version": "0.2.8", | ||
"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": "^8.0.0", | "stylelint-config-primer": "^9.0.0", | ||
"stylelint-selector-no-utility": "^4.0.0" | "stylelint-selector-no-utility": "^4.0.0" | ||
}, | }, | ||
"dependencies": { | "dependencies": { | ||
"@primer/css": "^12.7.0" | "@primer/css": "^14.3.0" | ||
}, | }, | ||
"scripts": { | "scripts": { | ||
"test": "stylelint '**/*.scss'" | "test": "stylelint '**/*.scss'" | ||
... | ... |
Please register or sign in to comment