Skip to content

Commit

Permalink
Merge pull request #19 from robertoachar/develop
Browse files Browse the repository at this point in the history
v2.3.1
  • Loading branch information
robertoachar authored Jan 3, 2019
2 parents 597078b + 20b3db7 commit 31c00d4
Show file tree
Hide file tree
Showing 12 changed files with 47 additions and 18 deletions.
9 changes: 8 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ typings/

# dotenv environment variables file
.env
.env.test

# parcel-bundler cache (https://parceljs.org/)
.cache
Expand All @@ -70,4 +71,10 @@ typings/
.vuepress/dist

# Serverless directories
.serverless
.serverless/

# FuseBox cache
.fusebox/

# DynamoDB Local files
.dynamodb/
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
language: node_js

node_js:
- "8"
- '10'

install:
- npm install
Expand Down
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## v2.3.1

### Template Updates

- **ci**: update node version
- **docs**: update README
- **refactor**: update .gitignore

### Generator Updates

- **build**: update dependencies
- **ci**: update node version
- **docs**: update README
- **refactor**: update .gitignore

## v2.3.0

### Template Updates
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ $ yo oss-project
| Starting development mode | `npm start` |
| Linting code | `npm run lint` |
| Running unit tests | `npm run jest` |
| Running code coverage | `npm run coverage` |
| Running lint + tests | `npm test` |
| Running code coverage | `npm run coverage` |
| Sending coverage results to Coveralls.io | `npm run coveralls` |

## Development
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
environment:
nodejs_version: "8"
nodejs_version: '10'

install:
- ps: Install-Product node $env:nodejs_version
Expand Down
2 changes: 1 addition & 1 deletion circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: 2
jobs:
build:
docker:
- image: circleci/node:8
- image: circleci/node:10
steps:
- checkout
- run: npm install
Expand Down
2 changes: 1 addition & 1 deletion generators/app/templates/README.md.template
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ $ npm install
| Starting development mode | `npm start` |
| Linting code | `npm run lint` |
| Running unit tests | `npm run jest` |
| Running code coverage | `npm run coverage` |
| Running lint + tests | `npm test` |
| Running code coverage | `npm run coverage` |
| Sending coverage results to Coveralls.io | `npm run coveralls` |

## Author
Expand Down
2 changes: 1 addition & 1 deletion generators/app/templates/appveyor.yml.template
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
environment:
nodejs_version: "8"
nodejs_version: '10'

install:
- ps: Install-Product node $env:nodejs_version
Expand Down
2 changes: 1 addition & 1 deletion generators/app/templates/circle.yml.template
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: 2
jobs:
build:
docker:
- image: circleci/node:8
- image: circleci/node:10
steps:
- checkout
- run: npm install
Expand Down
9 changes: 8 additions & 1 deletion generators/app/templates/gitignore.template
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ typings/

# dotenv environment variables file
.env
.env.test

# parcel-bundler cache (https://parceljs.org/)
.cache
Expand All @@ -70,4 +71,10 @@ typings/
.vuepress/dist

# Serverless directories
.serverless
.serverless/

# FuseBox cache
.fusebox/

# DynamoDB Local files
.dynamodb/
2 changes: 1 addition & 1 deletion generators/app/templates/travis.yml.template
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
language: node_js

node_js:
- "8"
- '10'

install:
- npm install
Expand Down
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "generator-oss-project",
"version": "2.3.0",
"version": "2.3.1",
"description": "Yeoman generator for open source projects.",
"author": "Roberto Achar <[email protected]>",
"contributors": [
Expand Down Expand Up @@ -37,19 +37,19 @@
"url": "https://github.com/robertoachar/generator-oss-project/issues"
},
"dependencies": {
"yeoman-generator": "3.1.1"
"yeoman-generator": "3.2.0"
},
"devDependencies": {
"@types/jest": "23.3.2",
"@types/yeoman-generator": "2.0.3",
"@types/jest": "23.3.11",
"@types/yeoman-generator": "3.0.1",
"coveralls": "3.0.2",
"eslint": "5.5.0",
"eslint": "5.11.1",
"eslint-config-airbnb-base": "13.1.0",
"eslint-config-prettier": "3.0.1",
"eslint-config-prettier": "3.3.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-prettier": "2.6.2",
"eslint-plugin-prettier": "3.0.1",
"jest": "23.6.0",
"prettier": "1.14.2",
"prettier": "1.15.3",
"yeoman-assert": "3.1.1",
"yeoman-test": "1.9.1"
},
Expand Down

0 comments on commit 31c00d4

Please sign in to comment.