8000 feat: new `--bare` CLI option to generate a barebone project without example code by haoqunjiang · Pull Request #636 · vuejs/create-vue · GitHub
[go: up one dir, main page]

Skip to content

feat: new --bare CLI option to generate a barebone project without example code #636

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 13 commits into from
Dec 23, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chore: remove debugging code
  • Loading branch information
haoqunjiang committed Dec 12, 2024
commit e2056bc5956bf17327cd61c8b6a329cebbc0337a
1 change: 0 additions & 1 deletion utils/trimBoilerplate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ export default function trimBoilerplate(rootDir: string, features: Record<string
for (const filename of fs.readdirSync(srcDir)) {
// Keep `App.vue`, `main.js/ts`, `router`, and `stores` directories
if (['App.vue', 'main.js', 'main.ts', 'router', 'stores'].includes(filename)) {
console.log('continued')
continue
}
const fullpath = path.resolve(srcDir, filename)
Expand Down
Loading
0