Skip to content

Commit

Permalink
Adjusted gitignore to be published as well, refs #1
Browse files Browse the repository at this point in the history
  • Loading branch information
enenkel committed Feb 14, 2017
1 parent 3b2bea8 commit d60f7af
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 16 deletions.
4 changes: 2 additions & 2 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
node_modules
.idea
test
.editorconfig
gulpfile.js
node_modules
test
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion generators/app/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ class NExTGenerator extends Generator {
);

this.fs.copyTpl(
this.templatePath(".gitignore"),
this.templatePath("gitignore"),
this.destinationPath(".gitignore")
);

Expand Down
File renamed without changes.
22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand All @@ -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",
Expand All @@ -48,5 +48,5 @@
"prepublish": "gulp prepublish",
"test": "gulp"
},
"license": "BSD-3-Clause"
"license": "MIT"
}

0 comments on commit d60f7af

Please sign in to comment.