Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): updating Spectral packages so that Arazzo and AsyncAPI #240

Merged
merged 8 commits into from
Oct 16, 2024
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ jobs:
env:
VSCE_TOKEN: ${{secrets.VSCE_TOKEN}}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- uses: actions/setup-node@v3.5.1
- uses: actions/setup-node@v4
with:
node-version: ^12.13
node-version: 18.x

- name: Yarn install
run: yarn install
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ jobs:
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
node-version: [^12.13]
node-version: [18.x]
frankkilcommins marked this conversation as resolved.
Show resolved Hide resolved
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- uses: actions/setup-node@v3.5.1
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

Expand Down
17 changes: 5 additions & 12 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,16 @@
{
"eslint.enable": true,
"eslint.workingDirectories": [
"./client",
"./server"
],
"eslint.workingDirectories": ["./client", "./server"],
"javascript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": false,
"typescript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": false,
"typescript.tsc.autoDetect": "off",
"typescript.tsdk": "./node_modules/typescript/lib",
"typescript.tsserver.log": "off",
"typescript.tsserver.trace": "off",
"eslint.probe": [
"typescript"
],
"eslint.validate": [
"typescript"
],
"eslint.probe": ["typescript"],
"eslint.validate": ["typescript"],
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"source.fixAll.eslint": "explicit"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Array [
},
Object {
"code": "oas3-schema",
"message": "Object must have required property \\"paths\\".",
"message": "must have required property \\"paths\\".",
"range": Array [
Object {
"character": 0,
Expand Down Expand Up @@ -68,7 +68,7 @@ Array [
},
Object {
"code": "oas3-schema",
"message": "\\"info\\" property type must be object.",
"message": "\\"info\\" property must be object.",
"range": Array [
Object {
"character": 10,
Expand Down Expand Up @@ -105,7 +105,7 @@ Array [
},
Object {
"code": "oas3-schema",
"message": "Object must have required property \\"paths\\".",
"message": "must have required property \\"paths\\".",
"range": Array [
Object {
"character": 0,
Expand Down Expand Up @@ -153,7 +153,7 @@ Array [
},
Object {
"code": "oas3-schema",
"message": "\\"info\\" property type must be object.",
"message": "\\"info\\" property must be object.",
"range": Array [
Object {
"character": 6,
Expand Down
2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,8 @@
"style guide",
"API description",
"API specification",
"API workflow",
"Arazzo",
"OAS",
"OAS2",
"OAS3",
Expand Down
8 changes: 4 additions & 4 deletions server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
"author": "Stoplight <[email protected]>",
"dependencies": {
"@stoplight/path": "^1.3.2",
"@stoplight/spectral-core": "^1.16.0",
"@stoplight/spectral-ruleset-bundler": "^1.5.0",
"@stoplight/spectral-ruleset-migrator": "^1.9.1",
"@stoplight/spectral-rulesets": "^1.14.1",
"@stoplight/spectral-core": "^1.19.1",
"@stoplight/spectral-ruleset-bundler": "^1.6.0",
"@stoplight/spectral-ruleset-migrator": "^1.10.0",
"@stoplight/spectral-rulesets": "^1.20.2",
"minimatch": "^3.0.4",
"rollup": "~2.79.0",
"vscode-languageserver": "^6.1.1",
Expand Down
Loading
Loading