We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b59411e commit 2e31d33Copy full SHA for 2e31d33
.github/workflows/vercel-deploy.yml
@@ -33,12 +33,6 @@ jobs:
33
npm i
34
npm run build
35
36
- - name: build example
37
- working-directory: ./example
38
- run: |
39
- npm install
40
- npm run docs
41
-
42
- uses: amondnet/vercel-action@v20
43
with:
44
vercel-token: ${{ secrets.VERCEL_TOKEN }}
.gitignore
@@ -3,4 +3,5 @@ node_modules
3
.idea
4
coverage
5
.now
6
-dist
+dist
7
+public
src/index.ts
@@ -200,8 +200,6 @@ const watchFiles = (argv: CLIArguments) => {
200
export default (argv: CLIArguments, ctx) => ({
201
name: 'vuepress-plugin-jsdoc',
202
ready: async () => {
203
- console.log('Ready', ctx.isProd);
204
205
if (!ctx.isProd) {
206
watchFiles(argv);
207
}
0 commit comments