Skip to content

Commit e286d74

Browse files
authored
Merge pull request #871 from mulesoft/build/6.6.49
W-19146671 Build/6.6.49
2 parents 56be738 + 49119ea commit e286d74

File tree

4 files changed

+94
-23
lines changed

4 files changed

+94
-23
lines changed

.github/workflows/deployment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
strategy:
2222
fail-fast: false
2323
matrix:
24-
os: [ubuntu-20.04, windows-2019]
24+
os: [ubuntu-22.04, windows-2019]
2525
runs-on: ${{ matrix.os }}
2626
steps:
2727
- uses: actions/checkout@v2

.npmrc

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
registry=https://registry.npmjs.org/
2+
@advanced-rest-client:registry=https://registry.npmjs.org/
3+
@mulesoft:registry=https://registry.npmjs.org/
4+
@salesforce:registry=https://registry.npmjs.org/
5+
always-auth=false
6+
strict-ssl=true

package-lock.json

Lines changed: 82 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "api-console",
33
"description": "The API Console to automatically generate API documentation from RAML and OAS files.",
4-
"version": "6.6.48",
4+
"version": "6.6.49",
55
"license": "CPAL-1.0",
66
"main": "index.js",
77
"module": "index.js",
@@ -73,6 +73,7 @@
7373
"express": "^4.17.1",
7474
"fs-extra": "^9.1.0",
7575
"husky": "^4.3.8",
76+
"js-yaml": "^4.1.0",
7677
"lint-staged": "^10.2.2",
7778
"multer": "^1.4.2",
7879
"node-cache": "^5.1.0",
@@ -97,10 +98,10 @@
9798
"format:eslint": "eslint --ext .js,.html . --fix --ignore-path .gitignore",
9899
"lint": "npm run lint:eslint",
99100
"format": "npm run format:eslint",
100-
"test": "web-test-runner test/*.test.js --coverage --node-resolve --playwright --browsers chromium firefox webkit && npm run test:visual",
101-
"test:visual": "web-test-runner test/visual/*.test.js --coverage --node-resolve --playwright --browsers chromium firefox webkit",
101+
"test": "web-test-runner test/*.test.js --coverage --node-resolve --playwright --browsers chromium firefox && npm run test:visual",
102+
"test:visual": "web-test-runner test/visual/*.test.js --coverage --node-resolve --playwright --browsers chromium firefox",
102103
"test:watch": "web-test-runner test/*.test.js --node-resolve --watch --playwright --browsers chromium",
103-
"test:visual:update": "web-test-runner test/**/*.test.js --coverage --node-resolve --playwright --browsers chromium firefox webkit --update-visual-baseline\n",
104+
"test:visual:update": "web-test-runner test/**/*.test.js --coverage --node-resolve --playwright --browsers chromium firefox --update-visual-baseline\n",
104105
"build": "rimraf dist && rollup -c rollup.config.js",
105106
"build:vendor": "node tasks/prepare.js",
106107
"build:models": "node demo/model.js",

0 commit comments

Comments
 (0)