Skip to content

Commit b23ca07

Browse files
authored
Create empty lib folder when generate scaffolding (#257)
1 parent 5bfba55 commit b23ca07

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/controllers/projectController.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ export class ProjectController implements Disposable {
9090
try {
9191
await fse.ensureDir(projectRoot);
9292
await fse.copy(templateRoot, projectRoot);
93+
await fse.ensureDir(path.join(projectRoot, "lib"));
9394
} catch (error) {
9495
window.showErrorMessage(error.message);
9596
return;

templates/invisible-project/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Welcome to the VS Code Java world. Here is a guideline to help you get started t
66

77
The workspace contains two folders by default, where:
88

9-
- `src`: the folder to maintain srouces
9+
- `src`: the folder to maintain sources
1010
- `lib`: the folder to maintain dependencies
1111

1212
## Dependency Management

0 commit comments

Comments
 (0)