Skip to content

Commit

Permalink
[ci] release
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Mar 29, 2024
1 parent 06eed60 commit 1b18af1
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 78 deletions.
6 changes: 0 additions & 6 deletions .changeset/witty-ants-design.md

This file was deleted.

36 changes: 21 additions & 15 deletions packages/starlight/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @astrojs/starlight

## 0.14.0

### Minor Changes

- [`06eed600da3521e19e7dcf8192b4067c6ce6cc18`](https://github.com/withastro/starlight/commit/06eed600da3521e19e7dcf8192b4067c6ce6cc18) Thanks [@openscript](https://github.com/openscript)! - Upgrade from upstream

## 0.21.2

### Patch Changes
Expand Down Expand Up @@ -216,9 +222,9 @@
If you want to preserve the previous, buggy styling, you can add the following custom CSS to your site:

```css
starlight-toc a[aria-current='true'],
starlight-toc a[aria-current='true']:hover,
starlight-toc a[aria-current='true']:focus {
starlight-toc a[aria-current="true"],
starlight-toc a[aria-current="true"]:hover,
starlight-toc a[aria-current="true"]:focus {
font-weight: 600;
color: var(--sl-color-text-invert);
background-color: var(--sl-color-text-accent);
Expand Down Expand Up @@ -290,8 +296,8 @@
If you want to preserve previous behaviour, disable link prefetching in `astro.config.mjs`:
```js
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
import { defineConfig } from "astro/config";
import starlight from "@astrojs/starlight";
export default defineConfig({
// Disable link prefetching:
Expand Down Expand Up @@ -629,16 +635,16 @@
```css
:root {
--sl-hue-accent: 234;
--sl-color-accent-low: hsl(var(--sl-hue-accent), 54%, 20%);
--sl-color-accent: hsl(var(--sl-hue-accent), 100%, 60%);
--sl-color-accent-high: hsl(var(--sl-hue-accent), 100%, 87%);
--sl-hue-accent: 234;
--sl-color-accent-low: hsl(var(--sl-hue-accent), 54%, 20%);
--sl-color-accent: hsl(var(--sl-hue-accent), 100%, 60%);
--sl-color-accent-high: hsl(var(--sl-hue-accent), 100%, 87%);
}
:root[data-theme='light'] {
--sl-color-accent-high: hsl(var(--sl-hue-accent), 80%, 30%);
--sl-color-accent: hsl(var(--sl-hue-accent), 90%, 60%);
--sl-color-accent-low: hsl(var(--sl-hue-accent), 88%, 90%);
:root[data-theme="light"] {
--sl-color-accent-high: hsl(var(--sl-hue-accent), 80%, 30%);
--sl-color-accent: hsl(var(--sl-hue-accent), 90%, 60%);
--sl-color-accent-low: hsl(var(--sl-hue-accent), 88%, 90%);
}
```
Expand Down Expand Up @@ -1017,8 +1023,8 @@
```json
{
"search.label": "Suchen",
"search.shortcutLabel": "(Drücke / zum Suchen)"
"search.label": "Suchen",
"search.shortcutLabel": "(Drücke / zum Suchen)"
}
```
Expand Down
2 changes: 1 addition & 1 deletion packages/starlight/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@openscript-ch/astro-course-theme",
"version": "0.13.0",
"version": "0.14.0",
"description": "Build beautiful, high-performance course content websites with Astro",
"scripts": {
"test": "vitest",
Expand Down
6 changes: 6 additions & 0 deletions packages/tailwind/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @astrojs/starlight-tailwind

## 2.4.0

### Minor Changes

- [`06eed600da3521e19e7dcf8192b4067c6ce6cc18`](https://github.com/withastro/starlight/commit/06eed600da3521e19e7dcf8192b4067c6ce6cc18) Thanks [@openscript](https://github.com/openscript)! - Upgrade from upstream

## 2.3.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/tailwind/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@openscript-ch/astro-course-theme-tailwind",
"version": "2.3.0",
"version": "2.4.0",
"description": "Tailwind CSS plugin for the Starlight documentation theme for Astro",
"author": "Chris Swithinbank <[email protected]>",
"license": "MIT",
Expand Down
55 changes: 0 additions & 55 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 1b18af1

Please sign in to comment.