Skip to content

Commit

Permalink
fix: fix http problem
Browse files Browse the repository at this point in the history
  • Loading branch information
flsion committed Nov 4, 2024
1 parent dd4070a commit 9589fcb
Show file tree
Hide file tree
Showing 8 changed files with 33,756 additions and 9 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"private": true,
"scripts": {
"postinstall": "husky install",
"init": "lerna run build --stream --scope=@arco-design/{vite-plugin-arco-vue-docs,arco-vue-scripts} && lerna link && lerna run build --scope=@arco-design/arco-vue-docs-navbar && lerna run init --scope=@arco-design/web-vue",
"init": "lerna run build --stream --scope=@arco-design/{vite-plugin-arco-vue-docs,arco-vue-scripts} && lerna link && lerna run init --scope=@arco-design/web-vue",
"start": "yarn workspace @arco-design/arco-vue-docs run start",
"build:site": "yarn workspace @arco-design/arco-vue-docs run build",
"test:screenshot": "yarn workspace @arco-design/web-vue run test:screenshot",
Expand Down
1 change: 0 additions & 1 deletion packages/arco-vue-docs-navbar/.gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
.idea/
.vscode/

dist/
node_modules/
**/.DS_Store
9 changes: 9 additions & 0 deletions packages/arco-vue-docs-navbar/dist/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import './index.less';
import './navbar.css';
interface NavBarOptions {
version?: string;
lang?: string;
handleLanguageChange?: (lang: string) => void;
}
declare const renderNavBar: (options?: NavBarOptions | undefined) => void;
export default renderNavBar;
Loading

0 comments on commit 9589fcb

Please sign in to comment.