Skip to content

Commit

Permalink
fix: fix README image path in package
Browse files Browse the repository at this point in the history
The GitHub branch used to generate the image path was incorrectly
inferred as `master` instead of `main`. Explicitly pass the branch as
`main`.
  • Loading branch information
joshbolduc committed Feb 7, 2021
1 parent 4027151 commit da7e5ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"build": "webpack --config ./webpack.config.js",
"watch": "webpack --watch --config ./webpack.config.js",
"build:production": "NODE_ENV=production webpack --config ./webpack.config.js",
"package": "npm run build:production && vsce package",
"package": "npm run build:production && vsce package --githubBranch main",
"deploy": "vsce publish",
"format": "prettier --check '{.vscode,src}/**/*.{json,ts}' '*.{json,md}'",
"format:fix": "npm run format -- --write",
Expand Down

0 comments on commit da7e5ad

Please sign in to comment.