Skip to content

Commit fe77645

Browse files
author
Eugenio Topa
committed
Merge branch 'release/1.0.0'
2 parents df4a4ca + 7cb6029 commit fe77645

File tree

2 files changed

+7
-9
lines changed

2 files changed

+7
-9
lines changed

.github/workflows/deploy.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,13 @@ jobs:
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

docs/.vitepress/config.ts

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,11 @@
11
import { defineConfig } from "vitepress"
22

33
export 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: {

0 commit comments

Comments
 (0)