Skip to content

Commit f20fdc1

Browse files
committed
chore(deps): upgrade
1 parent e648ead commit f20fdc1

File tree

15 files changed

+588
-506
lines changed

15 files changed

+588
-506
lines changed

apps/taro-webpack-tailwindcss-v4/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
"@tarojs/cli": "4.1.7",
7575
"@tarojs/taro-loader": "4.1.7",
7676
"@tarojs/webpack5-runner": "4.1.7",
77-
"@types/node": "^24.6.2",
77+
"@types/node": "^24.7.0",
7878
"@types/react": "^19.2.0",
7979
"@types/webpack-env": "^1.13.6",
8080
"@weapp-tailwindcss/merge": "workspace:*",

apps/vue-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@
1919
"tailwindcss": "catalog:tailwindcss4",
2020
"typescript": "~5.9.3",
2121
"vite": "^7.1.9",
22-
"vue-tsc": "^3.1.0"
22+
"vue-tsc": "^3.1.1"
2323
}
2424
}

benchmark/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"unplugin-vue-router": "^0.15.0",
3333
"vite": "^7.1.9",
3434
"vite-plugin-inspect": "^11.3.3",
35-
"vue-tsc": "^3.1.0",
35+
"vue-tsc": "^3.1.1",
3636
"weapp-tailwindcss": "workspace:*"
3737
}
3838
}

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"type": "module",
44
"version": "0.0.0",
55
"private": true,
6-
"packageManager": "pnpm@10.17.1",
6+
"packageManager": "pnpm@10.18.0",
77
"description": "把tailwindcss jit引擎,带给小程序开发者们! bring tailwindcss jit engine to miniprogram developers!",
88
"author": "ice breaker <1324318532@qq.com>",
99
"license": "MIT",
@@ -114,7 +114,7 @@
114114
"@csstools/css-tokenizer": "^3.0.4",
115115
"@eslint/config-inspector": "^1.3.0",
116116
"@icebreakers/eslint-config": "^1.4.5",
117-
"@icebreakers/monorepo": "^2.0.1",
117+
"@icebreakers/monorepo": "^2.0.2",
118118
"@icebreakers/stylelint-config": "^1.1.5",
119119
"@tailwindcss/postcss": "^4.1.14",
120120
"@tailwindcss/vite": "^4.1.14",
@@ -143,7 +143,7 @@
143143
"@types/lodash-es": "^4.17.12",
144144
"@types/md5": "^2.3.5",
145145
"@types/micromatch": "^4.0.9",
146-
"@types/node": "^24.6.2",
146+
"@types/node": "^24.7.0",
147147
"@types/npm-registry-fetch": "^8.0.8",
148148
"@types/postcss-js": "^4.0.4",
149149
"@types/semver": "^7.7.1",
@@ -164,7 +164,7 @@
164164
"boxen": "^8.0.1",
165165
"browserslist": "^4.26.3",
166166
"chokidar": "^4.0.3",
167-
"ci-info": "^4.3.0",
167+
"ci-info": "^4.3.1",
168168
"colorette": "^2.0.20",
169169
"consola": "^3.4.2",
170170
"cross-env": "^10.1.0",

pnpm-lock.yaml

Lines changed: 294 additions & 278 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

turbo.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
"^build"
77
],
88
"outputs": [
9-
"dist/**"
9+
"dist/**",
10+
"build/**"
1011
]
1112
},
1213
"lint": {

website/config/blog.ts

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
import type { Options as ClassicOptions } from '@docusaurus/preset-classic'
2+
3+
function createBlogOptions(): NonNullable<ClassicOptions['blog']> {
4+
return {
5+
remarkPlugins: [
6+
[
7+
require('@docusaurus/remark-plugin-npm2yarn'),
8+
{ converters: ['pnpm'] },
9+
],
10+
],
11+
blogTitle: 'weapp-tailwindcss 博客',
12+
blogDescription: '沉淀 tailwindcss 在小程序生态中的最佳实践、版本更新与生态动态。',
13+
showReadingTime: true,
14+
postsPerPage: 10,
15+
feedOptions: {
16+
type: 'all',
17+
title: 'weapp-tailwindcss 博客订阅',
18+
description: 'tailwindcss 在小程序与多端开发中的更新、案例与教程资讯。',
19+
language: 'zh-CN',
20+
},
21+
}
22+
}
23+
24+
export default createBlogOptions

website/config/footer.ts

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
import type { ThemeConfig } from '@docusaurus/preset-classic'
2+
3+
const footerLinks: NonNullable<ThemeConfig['footer']>['links'] = [
4+
{
5+
title: '文档',
6+
items: [
7+
{
8+
label: '指南',
9+
to: '/docs/intro',
10+
},
11+
{
12+
label: '配置项',
13+
to: '/docs/options/',
14+
},
15+
{
16+
label: '常见问题',
17+
to: '/docs/issues/',
18+
},
19+
{
20+
label: '博客',
21+
href: '/blog',
22+
},
23+
],
24+
},
25+
{
26+
title: '更多',
27+
items: [
28+
{
29+
label: 'GitHub',
30+
href: 'https://github.com/sonofmagic/weapp-tailwindcss',
31+
},
32+
{
33+
label: 'Code of Conduct',
34+
href: 'https://github.com/sonofmagic/weapp-tailwindcss/blob/main/CODE_OF_CONDUCT.md',
35+
},
36+
{
37+
label: 'weapp-vite',
38+
href: 'https://vite.icebreaker.top',
39+
},
40+
],
41+
},
42+
]
43+
44+
export const footerCustomFields = {
45+
legal: {
46+
href: '/docs/copyright',
47+
label: 'Copyright',
48+
target: '_self',
49+
},
50+
owner: {
51+
href: 'https://github.com/sonofmagic',
52+
name: 'sonofmagic',
53+
},
54+
poweredBy: {
55+
prefix: '本站由',
56+
href: 'https://www.netlify.com',
57+
label: 'Netlify',
58+
logoAlt: 'Netlify logo',
59+
logoSrc: '/img/logo-netlify.png',
60+
},
61+
} as const
62+
63+
export const footer: NonNullable<ThemeConfig['footer']> = {
64+
style: 'dark',
65+
links: footerLinks,
66+
}

website/config/headTags.ts

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
import type { Config } from '@docusaurus/types'
2+
import { organizationJsonLd } from './siteMetadata'
3+
4+
const headTags: NonNullable<Config['headTags']> = [
5+
{
6+
tagName: 'link',
7+
attributes: {
8+
rel: 'preconnect',
9+
href: 'https://hm.baidu.com',
10+
},
11+
},
12+
{
13+
tagName: 'meta',
14+
attributes: {
15+
name: 'baidu-site-verification',
16+
content: 'codeva-4ny6UzMmrn',
17+
},
18+
},
19+
{
20+
tagName: 'script',
21+
attributes: {
22+
type: 'application/ld+json',
23+
},
24+
innerHTML: JSON.stringify(organizationJsonLd),
25+
},
26+
]
27+
28+
export default headTags

website/config/navbar.ts

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
import type { ThemeConfig } from '@docusaurus/preset-classic'
2+
3+
const navbar: NonNullable<ThemeConfig['navbar']> = {
4+
title: 'weapp-tailwindcss',
5+
logo: {
6+
alt: 'weapp tailwindcss Logo',
7+
src: 'img/logo.png',
8+
},
9+
items: [
10+
{
11+
type: 'doc',
12+
docId: 'intro',
13+
position: 'left',
14+
label: '指南',
15+
},
16+
17+
{
18+
type: 'doc',
19+
label: '生态及解决方案',
20+
docId: 'community/templates',
21+
},
22+
{
23+
type: 'doc',
24+
label: '常见问题',
25+
docId: 'issues/index',
26+
},
27+
{
28+
type: 'doc',
29+
label: '案例展示',
30+
docId: 'showcase/index',
31+
},
32+
33+
{
34+
type: 'doc',
35+
label: '更新与迁移',
36+
docId: 'migrations/v3',
37+
},
38+
{
39+
type: 'doc',
40+
docId: 'api/interfaces/UserDefinedOptions',
41+
position: 'left',
42+
label: '配置项',
43+
},
44+
{
45+
href: '/blog',
46+
position: 'left',
47+
label: '博客',
48+
},
49+
{
50+
href: 'https://vite.icebreaker.top/',
51+
position: 'left',
52+
label: '🔥Weapp-vite',
53+
},
54+
55+
{
56+
href: 'https://github.com/sonofmagic/weapp-tailwindcss',
57+
label: 'GitHub',
58+
position: 'right',
59+
},
60+
],
61+
}
62+
63+
export default navbar

0 commit comments

Comments
 (0)