forked from loafle/openapi-generator-original
[TypeScript] harmonize gitignore file (#2746)
This commit is contained in:
parent
19619251f5
commit
6e6926a8b8
6
.gitignore
vendored
6
.gitignore
vendored
@ -166,14 +166,8 @@ samples/client/petstore/python-asyncio/.pytest_cache/
|
|||||||
samples/client/petstore/python-tornado/.venv/
|
samples/client/petstore/python-tornado/.venv/
|
||||||
|
|
||||||
# ts
|
# ts
|
||||||
samples/client/petstore/typescript-node/npm/node_modules
|
|
||||||
samples/client/petstore/typescript-node/**/typings
|
|
||||||
samples/client/petstore/typescript-angular/**/typings
|
|
||||||
samples/client/petstore/typescript-fetch/**/dist/
|
|
||||||
samples/client/petstore/typescript-fetch/**/typings
|
|
||||||
samples/client/petstore/typescript-angular2/npm/npm-debug.log
|
samples/client/petstore/typescript-angular2/npm/npm-debug.log
|
||||||
samples/client/petstore/typescript-node/npm/npm-debug.log
|
samples/client/petstore/typescript-node/npm/npm-debug.log
|
||||||
samples/client/petstore/typescript-aurelia/**/dist/
|
|
||||||
samples/client/petstore/typescript-angular/tsd-debug.log
|
samples/client/petstore/typescript-angular/tsd-debug.log
|
||||||
|
|
||||||
# aspnetcore
|
# aspnetcore
|
||||||
|
@ -110,6 +110,7 @@ public class TypeScriptFetchClientCodegen extends AbstractTypeScriptClientCodege
|
|||||||
supportingFiles.add(new SupportingFile("apis.index.mustache", apiPackage().replace('.', File.separatorChar), "index.ts"));
|
supportingFiles.add(new SupportingFile("apis.index.mustache", apiPackage().replace('.', File.separatorChar), "index.ts"));
|
||||||
supportingFiles.add(new SupportingFile("models.index.mustache", modelPackage().replace('.', File.separatorChar), "index.ts"));
|
supportingFiles.add(new SupportingFile("models.index.mustache", modelPackage().replace('.', File.separatorChar), "index.ts"));
|
||||||
supportingFiles.add(new SupportingFile("tsconfig.mustache", "", "tsconfig.json"));
|
supportingFiles.add(new SupportingFile("tsconfig.mustache", "", "tsconfig.json"));
|
||||||
|
supportingFiles.add(new SupportingFile("gitignore", "", ".gitignore"));
|
||||||
if (additionalProperties.containsKey(NPM_NAME)) {
|
if (additionalProperties.containsKey(NPM_NAME)) {
|
||||||
addNpmPackageGeneration();
|
addNpmPackageGeneration();
|
||||||
}
|
}
|
||||||
|
@ -110,6 +110,7 @@ public class TypeScriptRxjsClientCodegen extends AbstractTypeScriptClientCodegen
|
|||||||
supportingFiles.add(new SupportingFile("apis.index.mustache", apiPackage().replace('.', File.separatorChar), "index.ts"));
|
supportingFiles.add(new SupportingFile("apis.index.mustache", apiPackage().replace('.', File.separatorChar), "index.ts"));
|
||||||
supportingFiles.add(new SupportingFile("models.index.mustache", modelPackage().replace('.', File.separatorChar), "index.ts"));
|
supportingFiles.add(new SupportingFile("models.index.mustache", modelPackage().replace('.', File.separatorChar), "index.ts"));
|
||||||
supportingFiles.add(new SupportingFile("tsconfig.mustache", "", "tsconfig.json"));
|
supportingFiles.add(new SupportingFile("tsconfig.mustache", "", "tsconfig.json"));
|
||||||
|
supportingFiles.add(new SupportingFile("gitignore", "", ".gitignore"));
|
||||||
if (additionalProperties.containsKey(NPM_NAME)) {
|
if (additionalProperties.containsKey(NPM_NAME)) {
|
||||||
addNpmPackageGeneration();
|
addNpmPackageGeneration();
|
||||||
}
|
}
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
wwwroot/*.js
|
wwwroot/*.js
|
||||||
node_modules
|
node_modules
|
||||||
typings
|
typings
|
||||||
|
dist
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
wwwroot/*.js
|
wwwroot/*.js
|
||||||
node_modules
|
node_modules
|
||||||
typings
|
typings
|
||||||
|
dist
|
||||||
|
@ -0,0 +1,4 @@
|
|||||||
|
wwwroot/*.js
|
||||||
|
node_modules
|
||||||
|
typings
|
||||||
|
dist
|
@ -1,3 +1,4 @@
|
|||||||
wwwroot/*.js
|
wwwroot/*.js
|
||||||
node_modules
|
node_modules
|
||||||
typings
|
typings
|
||||||
|
dist
|
||||||
|
@ -0,0 +1,4 @@
|
|||||||
|
wwwroot/*.js
|
||||||
|
node_modules
|
||||||
|
typings
|
||||||
|
dist
|
@ -1,3 +1,4 @@
|
|||||||
wwwroot/*.js
|
wwwroot/*.js
|
||||||
node_modules
|
node_modules
|
||||||
typings
|
typings
|
||||||
|
dist
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
wwwroot/*.js
|
wwwroot/*.js
|
||||||
node_modules
|
node_modules
|
||||||
typings
|
typings
|
||||||
|
dist
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
wwwroot/*.js
|
wwwroot/*.js
|
||||||
node_modules
|
node_modules
|
||||||
typings
|
typings
|
||||||
|
dist
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
wwwroot/*.js
|
wwwroot/*.js
|
||||||
node_modules
|
node_modules
|
||||||
typings
|
typings
|
||||||
|
dist
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
wwwroot/*.js
|
wwwroot/*.js
|
||||||
node_modules
|
node_modules
|
||||||
typings
|
typings
|
||||||
|
dist
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
wwwroot/*.js
|
wwwroot/*.js
|
||||||
node_modules
|
node_modules
|
||||||
typings
|
typings
|
||||||
|
dist
|
||||||
|
4
samples/client/petstore/typescript-fetch/builds/default/.gitignore
vendored
Normal file
4
samples/client/petstore/typescript-fetch/builds/default/.gitignore
vendored
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
wwwroot/*.js
|
||||||
|
node_modules
|
||||||
|
typings
|
||||||
|
dist
|
4
samples/client/petstore/typescript-fetch/builds/es6-target/.gitignore
vendored
Normal file
4
samples/client/petstore/typescript-fetch/builds/es6-target/.gitignore
vendored
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
wwwroot/*.js
|
||||||
|
node_modules
|
||||||
|
typings
|
||||||
|
dist
|
4
samples/client/petstore/typescript-fetch/builds/with-interfaces/.gitignore
vendored
Normal file
4
samples/client/petstore/typescript-fetch/builds/with-interfaces/.gitignore
vendored
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
wwwroot/*.js
|
||||||
|
node_modules
|
||||||
|
typings
|
||||||
|
dist
|
4
samples/client/petstore/typescript-fetch/builds/with-npm-version/.gitignore
vendored
Normal file
4
samples/client/petstore/typescript-fetch/builds/with-npm-version/.gitignore
vendored
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
wwwroot/*.js
|
||||||
|
node_modules
|
||||||
|
typings
|
||||||
|
dist
|
@ -1,3 +1,4 @@
|
|||||||
wwwroot/*.js
|
wwwroot/*.js
|
||||||
node_modules
|
node_modules
|
||||||
typings
|
typings
|
||||||
|
dist
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
wwwroot/*.js
|
wwwroot/*.js
|
||||||
node_modules
|
node_modules
|
||||||
typings
|
typings
|
||||||
|
dist
|
||||||
|
4
samples/client/petstore/typescript-rxjs/builds/default/.gitignore
vendored
Normal file
4
samples/client/petstore/typescript-rxjs/builds/default/.gitignore
vendored
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
wwwroot/*.js
|
||||||
|
node_modules
|
||||||
|
typings
|
||||||
|
dist
|
4
samples/client/petstore/typescript-rxjs/builds/es6-target/.gitignore
vendored
Normal file
4
samples/client/petstore/typescript-rxjs/builds/es6-target/.gitignore
vendored
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
wwwroot/*.js
|
||||||
|
node_modules
|
||||||
|
typings
|
||||||
|
dist
|
4
samples/client/petstore/typescript-rxjs/builds/with-interfaces/.gitignore
vendored
Normal file
4
samples/client/petstore/typescript-rxjs/builds/with-interfaces/.gitignore
vendored
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
wwwroot/*.js
|
||||||
|
node_modules
|
||||||
|
typings
|
||||||
|
dist
|
4
samples/client/petstore/typescript-rxjs/builds/with-npm-version/.gitignore
vendored
Normal file
4
samples/client/petstore/typescript-rxjs/builds/with-npm-version/.gitignore
vendored
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
wwwroot/*.js
|
||||||
|
node_modules
|
||||||
|
typings
|
||||||
|
dist
|
Loading…
x
Reference in New Issue
Block a user