File tree Expand file tree Collapse file tree 2 files changed +35
-1
lines changed Expand file tree Collapse file tree 2 files changed +35
-1
lines changed Original file line number Diff line number Diff line change 1+ # .gitignore, because npm ignores it if this file is present.
2+ # Logs
3+ logs
4+ * .log
5+ npm-debug.log *
6+ yarn-debug.log *
7+ yarn-error.log *
8+ pnpm-debug.log *
9+ lerna-debug.log *
10+
11+ node_modules
12+ dist-ssr
13+ * .local
14+
15+ # Editor directories and files
16+ .vscode /*
17+ ! .vscode /extensions.json
18+ .idea
19+ .DS_Store
20+ * .suo
21+ * .ntvs *
22+ * .njsproj
23+ * .sln
24+ * .sw ?
25+
26+ .vercel
27+
28+ # Custom
29+ sortablejs- * .tgz
30+
31+ # Specific to ignoring when packaging
32+ .github
33+
34+
Original file line number Diff line number Diff line change 1717 },
1818 "scripts" : {
1919 "dev" : " vite" ,
20- "build" : " vite build && vue-tsc --emitDeclarationOnly --project tsconfig.dist.json && mv dist/lib dist/types && rm -rf favicon.ico" ,
20+ "build" : " vite build && vue-tsc --emitDeclarationOnly --project tsconfig.dist.json && mv dist/lib dist/types && rm -rf dist/ favicon.ico" ,
2121 "build:site" : " vue-tsc --noEmit --project tsconfig.site.json && vite --config vite.site.config.ts build" ,
2222 "preview" : " vite preview" ,
2323 "lint" : " yarn prettier --write '**/*.{ts,vue,json}'"
You can’t perform that action at this time.
0 commit comments