Skip to content

Commit ba51b71

Browse files
author
Arthur Bond
authored
Resolve node incompatibility (#74)
1 parent f83787a commit ba51b71

3 files changed

Lines changed: 2576 additions & 2170 deletions

File tree

CHANGELOG.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77

88
## [Unreleased]
99

10+
### Fixed
11+
12+
- Add `resolutions` section to `node/package.json` to eliminate node incompatibility errors
13+
1014
## [0.2.20] - 2023-01-10
1115

1216
## [0.2.19] - 2023-01-10
@@ -46,24 +50,33 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
4650
## [0.2.2] - 2023-01-10
4751

4852
## [0.2.1] - 2023-01-10
53+
4954
### Changed
55+
5056
- Setup current linter and prettier presets.
5157

5258
## [0.2.0] - 2020-10-29
53-
### Changed
59+
60+
### Changed
61+
5462
- Update documentation to include Route Params.
5563

5664
## [0.1.1] - 2020-06-26
65+
5766
### Changed
67+
5868
- Adding Github Actions and using vtex/typescript settings.
5969

6070
## [0.1.0] - 2020-06-08
71+
6172
### Changed
73+
6274
- Update to node builder `6.x`
6375

6476
## [0.0.7] - 2020-03-24
6577

6678
## [0.0.6] - 2020-01-11
79+
6780
- Improving the documentation and adding more examples on the handlers.
6881

6982
## [0.0.5] - 2019-11-18
@@ -75,9 +88,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
7588
## [0.0.2] - 2019-04-26
7689

7790
### Changed
91+
7892
- Using new IOClient
7993

8094
## [0.0.1] - 2019-03-29
8195

8296
### Added
97+
8398
- Initial example

node/package.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,16 @@
88
"@types/jest": "^24.0.18",
99
"@types/node": "^12.0.0",
1010
"@types/ramda": "types/npm-ramda#dist",
11-
"@vtex/api": "6.37.1",
11+
"@vtex/api": "6.45.15",
1212
"@vtex/test-tools": "^1.0.0",
1313
"@vtex/tsconfig": "^0.5.6",
1414
"typescript": "3.9.7"
1515
},
16+
"resolutions": {
17+
"@types/testing-library__dom": "6.12.1",
18+
"@types/express": "4.16.0",
19+
"@types/express-serve-static-core": "4.16.0"
20+
},
1621
"scripts": {
1722
"lint": "tsc --noEmit --pretty"
1823
},

0 commit comments

Comments
 (0)