Skip to content

Commit b48ccc6

Browse files
chore: update links from contrib to main org (#7672)
* chore: update links from contrib to main org * fix: new test urls
1 parent d66124d commit b48ccc6

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/content/awesome-webpack.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ _People passionate about Webpack (In no particular order)_
7171
#### Styles
7272

7373
- [Style Loader](https://github.com/webpack/style-loader): Style loader module for Webpack. -- _Maintainer_: `Webpack Team` [![Github][githubicon]](https://github.com/webpack)
74-
- [PostCSS Loader](https://github.com/postcss/postcss-loader): PostCSS loader for Webpack. -- _Maintainer_: `PostCSS Team` [![Github][githubicon]](https://github.com/postcss) [![Twitter][twittericon]](https://twitter.com/PostCSS)
74+
- [PostCSS Loader](https://github.com/webpack/postcss-loader): PostCSS loader for Webpack. -- _Maintainer_: `PostCSS Team` [![Github][githubicon]](https://github.com/postcss) [![Twitter][twittericon]](https://twitter.com/PostCSS)
7575
- [CSS Loader](https://github.com/webpack/css-loader): CSS loader module for Webpack. -- _Maintainer_: `Webpack Team` [![Github][githubicon]](https://github.com/webpack)
7676
- [SASS Loader](https://github.com/webpack/sass-loader): SASS loader for Webpack. -- _Maintainer_: `Jorik Tangelder` [![Github][githubicon]](https://github.com/jtangelder) [![Twitter][twittericon]](https://twitter.com/jorikdelaporik)
7777
- [Less Loader](https://github.com/webpack/less-loader): Less loader module for Webpack. -- _Maintainer_: `Webpack Team` [![Github][githubicon]](https://github.com/webpack)

src/remark-plugins/remark-cleanup-readme/index.test.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ describe('cleanup readme', () => {
3939
});
4040

4141
it('should clean up nested div[align="center"] block ', () => {
42-
// see https://github.com/webpack-contrib/postcss-loader/blob/master/README.md
42+
// see https://github.com/webpack/postcss-loader/blob/master/README.md
4343
const mdxText = `
4444
<div align="center">
4545
<img

src/utilities/process-readme.test.mjs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,19 +31,19 @@ describe('processReadme', () => {
3131
it('rewrite relative url', () => {
3232
const options = {
3333
source:
34-
'https://raw.githubusercontent.com/webpack-contrib/postcss-loader/master/README.md',
34+
'https://raw.githubusercontent.com/webpack/postcss-loader/main/README.md',
3535
};
3636
const loaderMDData =
3737
'See the file [`./src/config.d.ts`](./src/config.d.ts).';
3838
expect(processReadme(loaderMDData, options)).toEqual(
39-
'See the file [`https://github.com/webpack-contrib/postcss-loader/blob/master/src/config.d.ts`](https://github.com/webpack-contrib/postcss-loader/blob/master/src/config.d.ts).'
39+
'See the file [`https://github.com/webpack/postcss-loader/main/src/config.d.ts`](https://github.com/webpack/postcss-loader/main/src/config.d.ts).'
4040
);
4141
});
4242

4343
it('should preserve comments inside code blocks', () => {
4444
const options = {
4545
source:
46-
'https://raw.githubusercontent.com/webpack-contrib/postcss-loader/master/README.md',
46+
'https://raw.githubusercontent.com/webpack/postcss-loader/main/README.md',
4747
};
4848
const loaderMDData = `
4949
<!-- some comment that should be dropped -->

0 commit comments

Comments
 (0)