Skip to content
Draft
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
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
/.vscode
/build
/dist
/junit.xml
/test-reports

/tmp
node_modules
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP
// Jest Snapshot v1, https://jestjs.io/docs/snapshot-testing

exports[`JSON Schema generator evaluates intersection type 1`] = `
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP
// Jest Snapshot v1, https://jestjs.io/docs/snapshot-testing

exports[`OpenAPI 2 generator HTTP verbs DELETE endpoint 1`] = `
"{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP
// Jest Snapshot v1, https://jestjs.io/docs/snapshot-testing

exports[`OpenAPI 3 generator HTTP verbs DELETE endpoint 1`] = `
"{
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,17 +38,17 @@
"@types/express": "^4.17.21",
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^8.1.2",
"@types/jest": "^29.5.0",
"@types/jest": "^30.0.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.20.1",
"@types/qs": "^6.15.1",
"@types/randomstring": "^1.3.0",
"@types/supertest": "^6.0.0",
"@types/supertest": "^7.2.1",
"@types/validator": "^13.11.10",
"eslint-plugin-jest": "^29.16.1",
"globals": "^17.9.0",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"jest": "^30.4.2",
"jest-junit": "^17.0.0",
"nock": "^14.0.17",
"supertest": "^7.1.3",
"ts-jest": "^29.4.12"
Expand Down
1,778 changes: 1,018 additions & 760 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions pnpm-workspace.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,8 @@ minimumReleaseAge: 10080
minimumReleaseAgeExclude: "@airtasker/*"
allowBuilds:
core-js: false
# Reached through jest-resolve. Its postinstall only fetches a native binding when
# the platform one is missing, and all 22 @unrs/resolver-binding-* are pinned in the
# lockfile, so it resolves and exits. On a platform with no pinned binding the
# failure moves to require time instead — denying the script does not self-heal that.
unrs-resolver: false
Loading