Skip to content

Commit

Permalink
More debug values to diagnose error
Browse files Browse the repository at this point in the history
  • Loading branch information
peter-murray authored Oct 11, 2024
1 parent 039c04d commit 1832985
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 16 deletions.
8 changes: 4 additions & 4 deletions dist/main/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/main/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/main/sourcemap-register.js

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions dist/post/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/post/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/post/sourcemap-register.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions lib/github-application.js
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,7 @@ function proxyExcluded(noProxy, baseUrl) {

core.debug(`parsing baseURL: '${baseUrl}'`);
const parsedBaseUrl = new URL(baseUrl);
core.debug(`parsed = ${parsedBaseUrl}`);
core.debug(`base url host = '${parsedBaseUrl.host}'`);

return noProxyHosts.indexOf(parsedBaseUrl.host) > -1;
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

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

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"main": "index.js",
"scripts": {
"test": "mocha --recursive \"lib/**/*.test.js\"",
"build-main": "npx @vercel/ncc@0.38.1 build -m index.js -o dist/main -s",
"build-post": "npx @vercel/ncc@0.38.1 build -m post.js -o dist/post -s",
"build-main": "ncc build -m index.js -o dist/main -s",
"build-post": "ncc build -m post.js -o dist/post -s",
"build": "npm run build-main && npm run build-post"
},
"keywords": [
Expand All @@ -30,6 +30,6 @@
"devDependencies": {
"chai": "^4.3.4",
"mocha": "^9.1.2",
"@vercel/ncc": "^0.38.1"
"@vercel/ncc": "^0.38.2"
}
}

0 comments on commit 1832985

Please sign in to comment.