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
2 changes: 1 addition & 1 deletion .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04, windows-2019]
os: [ubuntu-22.04, windows-2019]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
Expand Down
6 changes: 6 additions & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
registry=https://registry.npmjs.org/
@advanced-rest-client:registry=https://registry.npmjs.org/
@mulesoft:registry=https://registry.npmjs.org/
@salesforce:registry=https://registry.npmjs.org/
always-auth=false
strict-ssl=true
100 changes: 82 additions & 18 deletions package-lock.json

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

9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "api-console",
"description": "The API Console to automatically generate API documentation from RAML and OAS files.",
"version": "6.6.48",
"version": "6.6.49",
"license": "CPAL-1.0",
"main": "index.js",
"module": "index.js",
Expand Down Expand Up @@ -73,6 +73,7 @@
"express": "^4.17.1",
"fs-extra": "^9.1.0",
"husky": "^4.3.8",
"js-yaml": "^4.1.0",
"lint-staged": "^10.2.2",
"multer": "^1.4.2",
"node-cache": "^5.1.0",
Expand All @@ -97,10 +98,10 @@
"format:eslint": "eslint --ext .js,.html . --fix --ignore-path .gitignore",
"lint": "npm run lint:eslint",
"format": "npm run format:eslint",
"test": "web-test-runner test/*.test.js --coverage --node-resolve --playwright --browsers chromium firefox webkit && npm run test:visual",
"test:visual": "web-test-runner test/visual/*.test.js --coverage --node-resolve --playwright --browsers chromium firefox webkit",
"test": "web-test-runner test/*.test.js --coverage --node-resolve --playwright --browsers chromium firefox && npm run test:visual",
"test:visual": "web-test-runner test/visual/*.test.js --coverage --node-resolve --playwright --browsers chromium firefox",
"test:watch": "web-test-runner test/*.test.js --node-resolve --watch --playwright --browsers chromium",
"test:visual:update": "web-test-runner test/**/*.test.js --coverage --node-resolve --playwright --browsers chromium firefox webkit --update-visual-baseline\n",
"test:visual:update": "web-test-runner test/**/*.test.js --coverage --node-resolve --playwright --browsers chromium firefox --update-visual-baseline\n",
"build": "rimraf dist && rollup -c rollup.config.js",
"build:vendor": "node tasks/prepare.js",
"build:models": "node demo/model.js",
Expand Down
Loading