Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandra-c committed Dec 14, 2020
2 parents 12701e8 + 478d4c7 commit 8caf586
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@
## Installation

First, install [Yeoman](http://yeoman.io) and @totalsoft/generator-graphql-rocket using [npm](https://www.npmjs.com/) (we assume you have pre-installed [node.js V14.7](https://nodejs.org/)).
First, install [Yeoman](http://yeoman.io) and @totalsoft/generator-graphql-rocket using [npm](https://www.npmjs.com/) (we assume you have pre-installed [node.js >= V14.15](https://nodejs.org/)).

```bash
npm install -g yo
npm install -g @totalsoft/generator-graphql-rocket
```

If you wand to use this generator to scaffold a new project navigate to section: [Generate new project](#generate-new-project)
If you want to use this generator to scaffold a new project navigate to section: [Generate new project](#generate-new-project)
To upgrade an existing project that was scaffold using this **GraphQL Rocket Generator**, see section: [Upgrade existing project](#upgrade-existing-project)

## Content
Expand Down
2 changes: 1 addition & 1 deletion generators/app/templates/infrastructure/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:14.7.0-buster
FROM node:14.15-buster

# Create app directory
WORKDIR /usr/src/app
Expand Down
4 changes: 2 additions & 2 deletions generators/app/templates/infrastructure/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"main": "src/index.js",
"type": "commonjs",
"engines": {
"node": ">=10.0.0",
"node": ">=14.15.0",
"<%=packageManager%>": ">= <%= packageManagerVersion %>"
},
"scripts": {
Expand All @@ -22,7 +22,7 @@
"dependencies": {
"@koa/router": "^9.4.0",
<%_ if(withMultiTenancy) {_%>
"@totalsoft/knex-filters": "^0.3.2",
"@totalsoft/knex-filters": "^0.3.3",
<%_}_%>
<%_ if(addSubscriptions) {_%>
"@totalsoft/message-bus": "^0.3.0",
Expand Down
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
},
"engines": {
"npm": ">= 4.0.0",
"node": ">= 8.10.0"
"node": ">= 14.15.0"
},
"dependencies": {
"boxen": "^4.2.0",
Expand Down

0 comments on commit 8caf586

Please sign in to comment.