diff --git a/.npmignore b/.npmignore index 6417295..7d108f3 100644 --- a/.npmignore +++ b/.npmignore @@ -1,5 +1,5 @@ -node_modules .idea -test .editorconfig gulpfile.js +node_modules +test diff --git a/README.md b/README.md index ad39320..c468b69 100644 --- a/README.md +++ b/README.md @@ -46,9 +46,12 @@ Feel free to [learn more about Yeoman](http://yeoman.io/). - [Mocha](https://github.com/mochajs/mocha) #### Others: - - [Tslint](https://github.com/palantir/tslint) - - [Typedoc](https://github.com/TypeStrong/typedoc) + - [Tslint](https://github.com/palantir/tslint) + - [Typedoc](https://github.com/TypeStrong/typedoc) +## Changelog / Releases + +Check here for available [releases](https://github.com/ommsolutions/generator-next/releases). ## Roadmap diff --git a/generators/app/index.js b/generators/app/index.js index 27d9563..3fc8d49 100644 --- a/generators/app/index.js +++ b/generators/app/index.js @@ -74,7 +74,7 @@ class NExTGenerator extends Generator { ); this.fs.copyTpl( - this.templatePath(".gitignore"), + this.templatePath("gitignore"), this.destinationPath(".gitignore") ); diff --git a/generators/app/templates/.gitignore b/generators/app/templates/gitignore similarity index 100% rename from generators/app/templates/.gitignore rename to generators/app/templates/gitignore diff --git a/package.json b/package.json index 0985d0c..37ffdf5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "generator-next", - "version": "0.2.0", + "version": "0.2.1", "description": "Generator that provides a basic setup for a Node project with Express and Typescript.", "homepage": "https://github.com/ommsolutions/generator-next", "author": { @@ -18,24 +18,24 @@ "yeoman-generator" ], "dependencies": { - "yeoman-generator": "^1.0.0", "chalk": "^1.1.3", + "yeoman-generator": "^1.1.0", "yosay": "^1.2.1" }, "devDependencies": { - "yeoman-test": "^1.6.0", - "yeoman-assert": "^2.2.1", - "eslint": "^3.1.1", + "eslint": "^3.15.0", "eslint-config-xo-space": "^0.15.0", - "gulp": "^3.9.0", + "gulp": "^3.9.1", + "gulp-coveralls": "^0.1.4", "gulp-eslint": "^3.0.1", "gulp-exclude-gitignore": "^1.0.0", + "gulp-istanbul": "^1.1.1", "gulp-line-ending-corrector": "^1.0.1", - "gulp-istanbul": "^1.0.0", "gulp-mocha": "^3.0.1", - "gulp-plumber": "^1.0.0", - "gulp-nsp": "^2.1.0", - "gulp-coveralls": "^0.1.0" + "gulp-nsp": "^2.4.2", + "gulp-plumber": "^1.1.0", + "yeoman-assert": "^2.2.3", + "yeoman-test": "^1.6.0" }, "eslintConfig": { "extends": "xo-space", @@ -48,5 +48,5 @@ "prepublish": "gulp prepublish", "test": "gulp" }, - "license": "BSD-3-Clause" + "license": "MIT" }