Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into feature/docker-and-…
Browse files Browse the repository at this point in the history
…package-upgrades-new
  • Loading branch information
lukehesluke committed Mar 7, 2024
2 parents 4c5603c + 712cd6a commit 37b3278
Show file tree
Hide file tree
Showing 104 changed files with 35,594 additions and 9,178 deletions.
13 changes: 13 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,19 @@
"NODE_APP_INSTANCE": "dev"
},
},
{
"name": "test-interface-criteria - unit tests",
"type": "node",
"request": "launch",
"cwd": "${workspaceFolder}/packages/test-interface-criteria/",
"runtimeArgs": [
"--inspect-brk",
"node_modules/.bin/jest",
"--runInBand"
],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
},
{
"name": "validate-feeds",
"type": "node",
Expand Down
4 changes: 4 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,3 +61,7 @@ For new features that affect test coverage, use a `coverage/*` branch in this re
2. Ensure that documentation reflects the new changes.
3. Check that CI tests pass before merging a Pull Request.
4. Ensure that your Pull Request has at least one approval before merging.
## Writing a new test
See the [Integration Tests CONTRIBUTING.md](./packages/openactive-integration-tests/CONTRIBUTING.md) for guidance on writing a new test.
3 changes: 2 additions & 1 deletion config/default.json
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,8 @@
}
}
}
}
},
"useShapeExpressions": false
},
"sellers": {
"primary": {
Expand Down
213 changes: 202 additions & 11 deletions package-lock.json

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

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
"update-test-suite": "npm run clean-install && git fetch --all && git reset --hard origin/master && git clean -f -d && npm install"
},
"dependencies": {
"@openactive/dataset-utils": "^1.0.1",
"config": "^3.3.6",
"inquirer": "^8.0.0",
"node-cleanup": "^2.1.2"
Expand Down
8 changes: 6 additions & 2 deletions packages/openactive-broker-microservice/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"extends": "airbnb-base",
"extends": ["airbnb-base"],
"plugins": ["jsdoc"],
"env": {
"node": true,
"jasmine": true
Expand Down Expand Up @@ -35,7 +36,10 @@
}
],
"no-use-before-define": ["error", { "functions": false, "classes": false }],
"no-underscore-dangle": "off"
"no-underscore-dangle": "off",
// Ensure that all function args are typed
"jsdoc/require-param": "error",
"jsdoc/require-param-type": "error"
},
"parserOptions": {
"ecmaVersion": 2020
Expand Down
1 change: 1 addition & 0 deletions packages/openactive-broker-microservice/.nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v18.17.1
3 changes: 3 additions & 0 deletions packages/openactive-broker-microservice/.vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"typescript.tsdk": "node_modules/typescript/lib"
}
Loading

0 comments on commit 37b3278

Please sign in to comment.