Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ version: 2.1

orbs:
vault: contentful/vault@1
node: circleci/node@5.2.0
node: circleci/node@7.1.1

jobs:
test:
docker:
- image: cimg/node:18.19
- image: 'cimg/node:20.19.4'
steps:
- checkout
- node/install-packages
Expand All @@ -17,7 +17,7 @@ jobs:
- run: npm run test:cover
release:
docker:
- image: cimg/node:18.19
- image: 'cimg/node:20.19.4'
steps:
- checkout
- vault/get-secrets: # Loads vault secrets
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v18
v20
158 changes: 139 additions & 19 deletions package-lock.json

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

14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"process": "process/browser"
},
"engines": {
"node": ">=18"
"node": ">=20"
},
"repository": {
"type": "git",
Expand All @@ -26,9 +26,8 @@
"author": "Contentful <opensource@contentful.com>",
"license": "MIT",
"scripts": {
"clean": "rimraf coverage && rimraf dist",
"build": "npm run clean && npm run build:esm && npm run build:rollup && rm -rf dist/esm-raw",
"build:esm": "tsc",
"clean": "rimraf dist",
"build": "npm run clean && npm run build:rollup",
"build:rollup": "NODE_ENV=production rollup -c",
"lint": "eslint src test --ext '.ts'",
"pretest": "npm run lint",
Expand All @@ -46,13 +45,14 @@
"dist"
],
"dependencies": {
"axios": "^1.7.2",
"fast-copy": "^3.0.2",
"lodash": "^4.17.21",
"p-throttle": "^6.1.0",
"process": "^0.11.10",
"qs": "^6.12.3"
},
"devDependencies": {
"@rollup/plugin-typescript": "^12.1.4",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/github": "^10.0.6",
Expand All @@ -63,7 +63,6 @@
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"@vitest/coverage-v8": "^2.0.2",
"axios": "^1.7.2",
"axios-mock-adapter": "^1.20.0",
"cz-conventional-changelog": "^3.1.0",
"eslint": "^8.57.0",
Expand All @@ -76,6 +75,7 @@
"prettier": "^3.3.2",
"rimraf": "^5.0.7",
"rollup": "^4.28.1",
"rollup-plugin-sourcemaps2": "^0.5.4",
"semantic-release": "^21.0.5",
"typescript": "^5.4.5",
"vitest": "^2.0.2"
Expand Down Expand Up @@ -136,4 +136,4 @@
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.18.0"
}
}
}
Loading