Skip to content

Commit

Permalink
[INVE-23376] Prevent errors from invocation test when folder is withi…
Browse files Browse the repository at this point in the history
…n Investigate folder (#16)
  • Loading branch information
daradermody authored Jan 10, 2024
1 parent ee3fa4d commit d0ade2b
Show file tree
Hide file tree
Showing 5 changed files with 2,950 additions and 1,449 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
## Installation

Please ensure that your version of NodeJs is greater than 10:
Please ensure that your version of NodeJs is 20 or greater:
```bash
node --version // v10.14.2
node --version // v20.10.0
```

First, install [Yeoman](http://yeoman.io) and generator-web-service [npm](https://www.npmjs.com/).
First, install [Yeoman](http://yeoman.io) and [generator-web-service](https://www.npmjs.com/package/@sirensolutions/generator-web-service):

```bash
npm install -g yo @sirensolutions/generator-web-service
Expand Down
5 changes: 3 additions & 2 deletions app/templates/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,10 @@
},
"dependencies": {
"@sirensolutions/web-service-interface": "latest",
"axios": "0.24.0"
"axios": "1.6.5"
},
"devDependencies": {
"@types/node": "^20.10.7",
"fs-extra": "^8.1.0",
"gulp": "^4.0.2",
"gulp-cached": "^1.1.1",
Expand All @@ -25,6 +26,6 @@
"rimraf": "^3.0.0",
"shelljs": "^0.8.3",
"sinon": "^8.1.0",
"typescript": "^3.7.2"
"typescript": "4.9.5"
}
}
3 changes: 2 additions & 1 deletion app/templates/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
"strict": true,
"lib": ["esnext"],
"target": "esnext",
"noImplicitAny": false
"noImplicitAny": false,
"typeRoots": ["node_modules/@types"]
},
"include": [
"src/**/*"
Expand Down
Loading

0 comments on commit d0ade2b

Please sign in to comment.