File tree Expand file tree Collapse file tree 2 files changed +7
-9
lines changed Expand file tree Collapse file tree 2 files changed +7
-9
lines changed Original file line number Diff line number Diff line change 5050 run : npm run build
5151 - name : Publish to NPM
5252 if : github.event_name == 'release'
53- run : npm publish
5453 env :
5554 NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
55+ NPM_TOKEN : ${{ secrets.NPM_TOKEN }}
56+ run : |
57+ echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc
58+ cat ~/.npmrc
59+ npm publish
5660 - name : Build with VitePress
5761 run : npm run docs:build # or pnpm docs:build / yarn docs:build / bun run docs:build
5862 - name : Upload artifact
Original file line number Diff line number Diff line change 11import { defineConfig } from "vitepress"
22
33export default defineConfig ( {
4- vue : {
5- template : {
6- compilerOptions : {
7- isCustomElement : ( tag ) => tag . includes ( 'hy-vue-' )
8- }
9- }
10- } ,
4+
115 lang : 'en-US' ,
126 title : "Hyper Vue Gantt" ,
137 description : "Documentation for the Huper Vue Gantt Chart Library" ,
14- base : '/hy-vue-gantt /' ,
8+ base : '/HyVueGantt /' ,
159 head : [ [ 'link' , { rel : 'icon' , href : '/favicon.ico' } ] ] ,
1610
1711 themeConfig : {
You can’t perform that action at this time.
0 commit comments