diff --git a/TypeScript/.gitignore b/TypeScript/.gitignore index b09b072..097430b 100644 --- a/TypeScript/.gitignore +++ b/TypeScript/.gitignore @@ -1,13 +1,30 @@ +.DS_Store + +# NPM node_modules/ npm-debug.log -typings -.idea -.iml -src/*.js -test/*.js -*.js.map -tsconfig.tsbuildinfo +package-lock.json + +coverage/ +.nyc_output/ +.stryker-tmp +# Typescript +app/**/*.js +app/**/*.js.map +test/**/*.js +test/**/*.js.map +tsconfig.tsbuildinfo dist/ coverage/ .nyc_output/ +typings + +# Eclipse +.project +.settings +.classpath + +# IDEA +.idea +*.iml diff --git a/TypeScript/package.json b/TypeScript/package.json index eb20121..1ac494c 100644 --- a/TypeScript/package.json +++ b/TypeScript/package.json @@ -1,5 +1,5 @@ { - "name": "legacy-code", + "name": "dependency-breaking-katas", "version": "0.0.1", "scripts": { "compile": "tsc -w",