Skip to content

Commit c203042

Browse files
committed
feat: add hooks
1 parent 3249ab5 commit c203042

File tree

6 files changed

+12
-6
lines changed

6 files changed

+12
-6
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,4 @@ web-types.json
2727
~*
2828
.pnpm-debug.log
2929
.history
30+
preset/components-changelog*

.husky/pre-dev

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/usr/bin/env sh
2+
. "$(dirname -- "$0")/_/husky.sh"
3+
4+
pnpm run gen-component-changelog

demo/utils/ChangeLogButton.vue

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import { marked } from 'marked'
55
import { type ButtonProps, useThemeVars } from 'naive-ui'
66
import { defineComponent, ref } from 'vue'
77
import { useRoute } from 'vue-router'
8-
import zhCN from '../../components-changelog-cn.json'
9-
import enUS from '../../components-changelog-en.json'
8+
import zhCN from '../../preset/components-changelog-cn.json'
9+
import enUS from '../../preset/components-changelog-en.json'
1010
import { push } from '../store'
1111
import { i18n } from '../utils/composables'
1212

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"start": "pnpm run dev",
3636
"dev": "pnpm run clean && pnpm run gen-version && pnpm run gen-volar-dts && NODE_ENV=development vite",
3737
"build:package": "pnpm run gen-version && pnpm run clean && pnpm run gen-volar-dts && tsc -b --force tsconfig.esm.json && node scripts/pre-build/pre-cjs-build.js && tsc -b --force tsconfig.cjs.json && rollup -c && pnpm run test:umd && pnpm run test:esm && node scripts/post-build && rimraf {es,lib}/*.tsbuildinfo",
38-
"build:site": "bash ./scripts/pre-build-site/pre-build-site.sh && NODE_ENV=production NODE_OPTIONS=--max-old-space-size=4096 vite build && bash ./scripts/post-build-site/post-build-site.sh && pnpm run gen-version",
38+
"build:site": "bash ./scripts/pre-build-site/pre-build-site.sh && NODE_ENV=production NODE_OPTIONS=--max-old-space-size=4096 vite build && bash ./scripts/post-build-site/post-build-site.sh && npm run gen-component-changelog",
3939
"clean": "rimraf site lib es dist node_modules/naive-ui themes/tusimple/es themes/tusimple/lib",
4040
"release:package": "pnpm run test && pnpm run build:package && pnpm publish --no-git-checks",
4141
"release:changelog": "node scripts/release-changelog.mjs",
@@ -59,6 +59,7 @@
5959
"gen-volar-dts": "esbuild scripts/gen-component-declaration.js --bundle --platform=node --tsconfig=tsconfig.esbuild.json | node",
6060
"build:site:ts": "bash ./scripts/pre-build-site/pre-build-site.sh && TUSIMPLE=true NODE_ENV=production NODE_OPTIONS=--max-old-space-size=4096 vite build && bash ./scripts/post-build-site/post-build-site.sh",
6161
"prepare": "husky",
62+
"prestart": "npm run gen-component-changelog",
6263
"transpile-docs": "node scripts/md-to-vue data-table",
6364
"release:site": "TUSIMPLE=true pnpm run build:site && node build-doc/generate-deploy-sh.js && sudo bash build-doc/deploy-doc.sh"
6465
},

scripts/gen-component-changelog.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ function main() {
119119
'utf-8'
120120
)
121121
fs.writeFileSync(
122-
path.resolve(__dirname, `../components-changelog-${lang}.json`),
122+
path.resolve(__dirname, `../preset/components-changelog-${lang}.json`),
123123
JSON.stringify(parseChangelog(content), null, 2)
124124
)
125125
})

volar.d.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ declare module 'vue' {
6868
NH4: (typeof import('naive-ui'))['NH4']
6969
NH5: (typeof import('naive-ui'))['NH5']
7070
NH6: (typeof import('naive-ui'))['NH6']
71+
NHighlight: (typeof import('naive-ui'))['NHighlight']
7172
NHr: (typeof import('naive-ui'))['NHr']
7273
NIcon: (typeof import('naive-ui'))['NIcon']
7374
NIconWrapper: (typeof import('naive-ui'))['NIconWrapper']
@@ -89,6 +90,7 @@ declare module 'vue' {
8990
NListItem: (typeof import('naive-ui'))['NListItem']
9091
NLoadingBarProvider: (typeof import('naive-ui'))['NLoadingBarProvider']
9192
NLog: (typeof import('naive-ui'))['NLog']
93+
NMarquee: (typeof import('naive-ui'))['NMarquee']
9294
NMention: (typeof import('naive-ui'))['NMention']
9395
NMenu: (typeof import('naive-ui'))['NMenu']
9496
NMessageProvider: (typeof import('naive-ui'))['NMessageProvider']
@@ -150,8 +152,6 @@ declare module 'vue' {
150152
NUploadTrigger: (typeof import('naive-ui'))['NUploadTrigger']
151153
NVirtualList: (typeof import('naive-ui'))['NVirtualList']
152154
NWatermark: (typeof import('naive-ui'))['NWatermark']
153-
NHighlight: (typeof import('naive-ui'))['NHighlight']
154-
NMarquee: (typeof import('naive-ui'))['NMarquee']
155155
}
156156
}
157157
export {}

0 commit comments

Comments
 (0)