Skip to content

Commit 8755634

Browse files
Merge pull request #674 from webpack/migrate
chore: migrate from contrib
2 parents f5af532 + 8e9d5a0 commit 8755634

File tree

8 files changed

+13
-50
lines changed

8 files changed

+13
-50
lines changed

.github/FUNDING.yml

Lines changed: 0 additions & 1 deletion
This file was deleted.

.github/ISSUE_TEMPLATE.md

Lines changed: 0 additions & 36 deletions
This file was deleted.

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: main
22
on:
33
push:
44
branches:
5-
- master
5+
- main
66
pull_request:
77
jobs:
88
build-and-test:

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,11 @@ If your own project's Webpack config has `BundleAnalyzerPlugin` configured with
4848

4949
We'd love for you to contribute your changes back to `webpack-bundle-analyzer`! To do that, it would be ace if you could commit your changes to a separate feature branch and open a Pull Request for those changes.
5050

51-
Point your feature branch to use the `master` branch as the base of this PR. The exact commands used depends on how you've setup your local git copy, but the flow could look like this:
51+
Point your feature branch to use the `main` branch as the base of this PR. The exact commands used depends on how you've setup your local git copy, but the flow could look like this:
5252

5353
```sh
5454
# Inside your own copy of `webpack-bundle-analyzer` package...
55-
git checkout --branch feature-branch-name-here upstream/master
55+
git checkout --branch feature-branch-name-here upstream/main
5656
# Then hack away, and commit your changes:
5757
git add -A
5858
git commit -m "Few words about the changes I did"

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ command:
8181
webpack --profile --json > stats.json
8282
```
8383

84-
If you're on Windows and using PowerShell, you can generate the stats file with this command to [avoid BOM issues](https://github.com/webpack-contrib/webpack-bundle-analyzer/issues/47):
84+
If you're on Windows and using PowerShell, you can generate the stats file with this command to [avoid BOM issues](https://github.com/webpack/webpack-bundle-analyzer/issues/47):
8585

8686
```
8787
webpack --profile --json | Out-file 'stats.json' -Encoding OEM
@@ -183,7 +183,7 @@ It happens when `webpack-bundle-analyzer` analyzes files that don't actually exi
183183
Error parsing bundle asset "your_bundle_name.bundle.js": no such file
184184
No bundles were parsed. Analyzer will show only original module sizes from stats file.
185185
```
186-
To get more information about it you can read [issue #147](https://github.com/webpack-contrib/webpack-bundle-analyzer/issues/147).
186+
To get more information about it you can read [issue #147](https://github.com/webpack/webpack-bundle-analyzer/issues/147).
187187

188188
<h2 align="center">Other tools</h2>
189189

@@ -217,8 +217,8 @@ To get more information about it you can read [issue #147](https://github.com/we
217217
[node]: https://img.shields.io/node/v/webpack-bundle-analyzer.svg
218218
[node-url]: https://nodejs.org
219219

220-
[tests]: https://github.com/webpack-contrib/webpack-bundle-analyzer/actions/workflows/main.yml/badge.svg
221-
[tests-url]: https://github.com/webpack-contrib/webpack-bundle-analyzer/actions/workflows/main.yml
220+
[tests]: https://github.com/webpack/webpack-bundle-analyzer/actions/workflows/main.yml/badge.svg
221+
[tests-url]: https://github.com/webpack/webpack-bundle-analyzer/actions/workflows/main.yml
222222

223223
[downloads]: https://img.shields.io/npm/dt/webpack-bundle-analyzer.svg
224224
[downloads-url]: https://npmjs.com/package/webpack-bundle-analyzer

client/components/Treemap.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ export default class Treemap extends Component {
101101
} else if (highlightGroups && highlightGroups.size > 0) {
102102
// this means a search (e.g.) is active, but this module
103103
// does not match; gray it out
104-
// https://github.com/webpack-contrib/webpack-bundle-analyzer/issues/553
104+
// https://github.com/webpack/webpack-bundle-analyzer/issues/553
105105
variables.groupColor.s = 10;
106106
}
107107
},

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
"description": "Webpack plugin and CLI utility that represents bundle content as convenient interactive zoomable treemap",
55
"author": "Yury Grunin <[email protected]>",
66
"license": "MIT",
7-
"homepage": "https://github.com/webpack-contrib/webpack-bundle-analyzer",
8-
"changelog": "https://github.com/webpack-contrib/webpack-bundle-analyzer/blob/master/CHANGELOG.md",
7+
"homepage": "https://github.com/webpack/webpack-bundle-analyzer",
8+
"changelog": "https://github.com/webpack/webpack-bundle-analyzer/blob/main/CHANGELOG.md",
99
"bugs": {
10-
"url": "https://github.com/webpack-contrib/webpack-bundle-analyzer/issues"
10+
"url": "https://github.com/webpack/webpack-bundle-analyzer/issues"
1111
},
1212
"repository": {
1313
"type": "git",
14-
"url": "git+https://github.com/webpack-contrib/webpack-bundle-analyzer.git"
14+
"url": "git+https://github.com/webpack/webpack-bundle-analyzer.git"
1515
},
1616
"main": "lib/index.js",
1717
"bin": "lib/bin/analyzer.js",

src/bin/analyzer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ const program = commander
3535
)
3636
.option(
3737
// Had to make `host` parameter optional in order to let `-h` flag output help message
38-
// Fixes https://github.com/webpack-contrib/webpack-bundle-analyzer/issues/239
38+
// Fixes https://github.com/webpack/webpack-bundle-analyzer/issues/239
3939
'-h, --host [host]',
4040
'Host that will be used in `server` mode to start HTTP server.',
4141
'127.0.0.1'

0 commit comments

Comments
 (0)