Skip to content

Commit

Permalink
fix: setActiveLink #138
Browse files Browse the repository at this point in the history
  • Loading branch information
ATQQ committed Sep 23, 2023
1 parent ac03c94 commit bf7e799
Show file tree
Hide file tree
Showing 13 changed files with 43 additions and 22 deletions.
7 changes: 7 additions & 0 deletions packages/blogpress/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,14 @@ publish: false

# blogpress

## 2.0.9
### Patch Changes

- Updated dependencies
- @sugarat/theme@0.1.50

## 2.0.8

### Patch Changes

- Updated dependencies
Expand Down
4 changes: 2 additions & 2 deletions packages/blogpress/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "blogpress",
"version": "2.0.8",
"version": "2.0.9",
"private": true,
"license": "MIT",
"scripts": {
Expand All @@ -10,7 +10,7 @@
},
"dependencies": {
"@element-plus/icons-vue": "^2.1.0",
"@sugarat/theme": "0.1.49",
"@sugarat/theme": "0.1.50",
"axios": "^0.27.2",
"element-plus": "^2.3.8",
"vitepress": "1.0.0-rc.14",
Expand Down
6 changes: 6 additions & 0 deletions packages/create-theme/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @sugarat/create-theme

## 0.0.17

### Patch Changes

- fix: setActiveLink

## 0.0.16

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/create-theme/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sugarat/create-theme",
"version": "0.0.16",
"version": "0.0.17",
"description": "简约风的 Vitepress 博客主题,sugarat vitepress blog theme",
"author": "粥里有勺糖",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion packages/create-theme/public/template/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
},
"dependencies": {
"@element-plus/icons-vue": "^2.1.0",
"@sugarat/theme": "^0.1.49",
"@sugarat/theme": "^0.1.50",
"element-plus": "^2.3.8",
"vue": "^3.3.4"
},
Expand Down
8 changes: 8 additions & 0 deletions packages/theme/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @sugarat/theme

## 0.1.50

### Patch Changes

- fix: setActiveLink [#138](https://github.com/ATQQ/sugar-blog/issues/138)
- Updated dependencies
- [email protected]

## 0.1.49

### Patch Changes
Expand Down
8 changes: 8 additions & 0 deletions packages/theme/docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,14 @@ pnpm up @sugarat/theme
pnpm add vitepress@latest
```

## 0.1.50 (2023/09/23)

### Patch Changes

- fix: setActiveLink [#138](https://github.com/ATQQ/sugar-blog/issues/138)
- Updated dependencies
- [email protected]

## 0.1.49 (2023/09/20)

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/theme/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sugarat/theme",
"version": "0.1.49",
"version": "0.1.50",
"description": "简约风的 Vitepress 博客主题,sugarat vitepress blog theme",
"author": "sugar",
"license": "MIT",
Expand Down Expand Up @@ -52,7 +52,7 @@
"highlight.js": "^11.7.0",
"mermaid": "^10.2.4",
"vitepress-plugin-mermaid": "^2.0.13",
"vitepress-plugin-pagefind": "0.2.9",
"vitepress-plugin-pagefind": "0.2.10",
"vue-command-palette": "^0.1.4"
},
"devDependencies": {
Expand Down
5 changes: 0 additions & 5 deletions packages/theme/src/styles/scss/global.scss
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
@import 'highlight.scss';

html,
body,
#app {
height: 100%;
}
body {
margin: 0;
padding: 0;
Expand Down
6 changes: 6 additions & 0 deletions packages/vitepress-plugin-pagefind/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# vitepress-plugin-pagefind

## 0.2.10

### Patch Changes

- fix: setActiveLink

## 0.2.9

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/vitepress-plugin-pagefind/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vitepress-plugin-pagefind",
"version": "0.2.9",
"version": "0.2.10",
"description": "vitepress plugin, Offline full-text search based on pagefind implementation.",
"author": "sugar",
"license": "MIT",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
@import 'highlight.scss';

html,
body,
#app {
height: 100%;
}
body {
margin: 0;
padding: 0;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -195,11 +195,7 @@ html.dark .hljs-deletion {
code.hljs {
border-radius: 16px;
}
html,
body,
#app {
height: 100%;
}

body {
margin: 0;
padding: 0;
Expand Down

0 comments on commit bf7e799

Please sign in to comment.