Merge branch 'main' into migrate-md-enhance

This commit is contained in:
pengzhanbo 2024-09-24 22:57:17 +08:00
commit 88d90743dc
11 changed files with 25 additions and 26 deletions

View File

@ -1,3 +1,19 @@
# [1.0.0-rc.102](https://github.com/pengzhanbo/vuepress-theme-plume/compare/v1.0.0-rc.101...v1.0.0-rc.102) (2024-09-23)
### Bug Fixes
* **cli:** intermittent dependency installation failure ([#207](https://github.com/pengzhanbo/vuepress-theme-plume/issues/207)) ([04f488e](https://github.com/pengzhanbo/vuepress-theme-plume/commit/04f488e3498027971cbc6800b47986b15609aa47))
* **theme:** `sidebar prefix` validation completion ([#208](https://github.com/pengzhanbo/vuepress-theme-plume/issues/208)) ([a11166d](https://github.com/pengzhanbo/vuepress-theme-plume/commit/a11166de6ef07bbe0b19ba5e75bfa98c06b8d723))
### Performance Improvements
* **plugin-md-power:** optimize structure ([#204](https://github.com/pengzhanbo/vuepress-theme-plume/issues/204)) ([2cf606b](https://github.com/pengzhanbo/vuepress-theme-plume/commit/2cf606b1de119478087f676808e9e2a06cdb04af))
* update vuepress deps to latest ([#202](https://github.com/pengzhanbo/vuepress-theme-plume/issues/202)) ([533898e](https://github.com/pengzhanbo/vuepress-theme-plume/commit/533898e3a66630f6ca724884c326071d2aec24cd))
# [1.0.0-rc.101](https://github.com/pengzhanbo/vuepress-theme-plume/compare/v1.0.0-rc.100...v1.0.0-rc.101) (2024-09-20)

View File

@ -1,7 +1,7 @@
{
"name": "create-vuepress-theme-plume",
"type": "module",
"version": "1.0.0-rc.101",
"version": "1.0.0-rc.102",
"description": "The cli for create vuepress-theme-plume's project",
"author": "pengzhanbo <q942450674@outlook.com> (https://github.com/pengzhanbo/)",
"license": "MIT",

View File

@ -31,3 +31,4 @@ readingTime: false
| **锋 | 2024-04-18 | 6.88 | 支持下作者,加油! |
| *杰 | 2024-05-25 | 6.00 | 请你喝杯茶,加油 |
| **党 | 2024-08-22 | 8.80 | 感谢开源,加油 |
| **睿 | 2024-09-22 | 12.00 | - |

View File

@ -1,7 +1,7 @@
{
"name": "vuepress-theme-plume-monorepo",
"type": "module",
"version": "1.0.0-rc.101",
"version": "1.0.0-rc.102",
"private": true,
"packageManager": "pnpm@9.11.0",
"author": "pengzhanbo <q942450674@outlook.com> (https://github.com/pengzhanbo/)",

View File

@ -1,7 +1,7 @@
{
"name": "@vuepress-plume/plugin-content-update",
"type": "module",
"version": "1.0.0-rc.101",
"version": "1.0.0-rc.102",
"description": "The Plugin for VuePress 2 - content update",
"author": "pengzhanbo <volodymyr@foxmail.com>",
"license": "MIT",

View File

@ -1,7 +1,7 @@
{
"name": "@vuepress-plume/plugin-fonts",
"type": "module",
"version": "1.0.0-rc.101",
"version": "1.0.0-rc.102",
"description": "The Plugin for VuePress 2 - fonts",
"author": "pengzhanbo <volodymyr@foxmail.com>",
"license": "MIT",

View File

@ -1,7 +1,7 @@
{
"name": "vuepress-plugin-md-power",
"type": "module",
"version": "1.0.0-rc.101",
"version": "1.0.0-rc.102",
"description": "The Plugin for VuePress 2 - markdown power",
"author": "pengzhanbo <volodymyr@foxmail.com>",
"license": "MIT",

View File

@ -1,7 +1,7 @@
{
"name": "@vuepress-plume/plugin-search",
"type": "module",
"version": "1.0.0-rc.101",
"version": "1.0.0-rc.102",
"description": "The Plugin for VuePress 2 - local search",
"author": "pengzhanbo <volodymyr@foxmail.com>",
"license": "MIT",

View File

@ -1,7 +1,7 @@
{
"name": "@vuepress-plume/plugin-shikiji",
"type": "module",
"version": "1.0.0-rc.101",
"version": "1.0.0-rc.102",
"description": "The Plugin for VuePress 2 - shiki",
"author": "pengzhanbo <volodymyr@foxmail.com>",
"license": "MIT",

View File

@ -1,7 +1,7 @@
{
"name": "vuepress-theme-plume",
"type": "module",
"version": "1.0.0-rc.101",
"version": "1.0.0-rc.102",
"description": "A Blog&Document Theme for VuePress 2.0",
"author": "pengzhanbo <q942450674@outlook.com> (https://github.com/pengzhanbo/)",
"license": "MIT",

View File

@ -34,7 +34,6 @@ export function extendsBundlerOptions(bundlerOptions: any, app: App): void {
.rule('scss')
.use('sass-loader')
.tap((options: any) => ({
// api: 'modern-compiler',
...options,
sassOptions: {
silenceDeprecations: ['mixed-decls', 'legacy-js-api'],
@ -48,26 +47,9 @@ export function extendsBundlerOptions(bundlerOptions: any, app: App): void {
preprocessorOptions: {
sass: {
silenceDeprecations: ['mixed-decls', 'legacy-js-api'],
// logger: {
// warn: (message, { deprecation, deprecationType }) => {
// if (deprecation && deprecationType.id === 'mixed-decls')
// return
// console.warn(message)
// },
// },
},
scss: {
silenceDeprecations: ['mixed-decls', 'legacy-js-api'],
// logger: {
// warn: (message, { deprecation, deprecationType }) => {
// if (deprecation && deprecationType.id === 'mixed-decls')
// return
// if (!message.includes('repetitive deprecation warnings omitted')) {
// console.warn(message)
// }
// },
// },
},
},
},