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 07ff9a0 commit 1b4ad84Copy full SHA for 1b4ad84
lib/services/project-service.ts
@@ -133,8 +133,6 @@ export class ProjectService implements IProjectService {
133
private createBasicProjectStructure(projectDir: string, projectId: string): IFuture<void> {
134
return (() => {
135
this.$fs.createDirectory(path.join(projectDir, "platforms")).wait();
136
- this.$fs.createDirectory(path.join(projectDir, "tns_modules")).wait();
137
- this.$fs.createDirectory(path.join(projectDir, "hooks")).wait();
138
139
var projectData = { id: projectId };
140
this.$fs.writeFile(path.join(projectDir, this.$staticConfig.PROJECT_FILE_NAME), JSON.stringify(projectData)).wait();
0 commit comments