Skip to content

Commit 54c9ebf

Browse files
committed
chore: fix repository urls
1 parent 40bc880 commit 54c9ebf

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ BEFORE YOU SUBMIT please read the following:
33
44
If you have a support request or question please submit them to one of this resources:
55
6-
* Gitter: https://gitter.im/webpack-contrib/grunt-webpack
6+
* Gitter: https://gitter.im/webpack/grunt-webpack
77
* StackOverflow: http://stackoverflow.com/questions/tagged/webpack+gruntjs using the tags `[webpack]` and `[gruntjs]`
88
9-
Issues on github are only related to problems of grunt-webpack itself and we cannot answer
9+
Issues on github are only related to problems of grunt-webpack itself and we cannot answer
1010
support questions here.
1111
-->
1212

@@ -42,9 +42,9 @@ support questions here.
4242
<!--- To find the package versions you can use `npm ls grunt webpack grunt-webpack` -->
4343
| software | version
4444
| ---------------- | -------
45-
| webpack |
45+
| webpack |
4646
| grunt-webpack |
4747
| grunt |
48-
| node |
49-
| npm |
50-
| Operating System |
48+
| node |
49+
| npm |
50+
| Operating System |

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22
"name": "grunt-webpack",
33
"description": "Use webpack with grunt.",
44
"version": "7.0.1",
5-
"homepage": "https://github.com/webpack-contrib/grunt-webpack",
5+
"homepage": "https://github.com/webpack/grunt-webpack",
66
"author": {
77
"name": "Tobias Koppers @sokra"
88
},
99
"repository": {
1010
"type": "git",
11-
"url": "git+https://github.com/webpack-contrib/grunt-webpack.git"
11+
"url": "git+https://github.com/webpack/grunt-webpack.git"
1212
},
1313
"bugs": {
14-
"url": "https://github.com/webpack-contrib/grunt-webpack/issues"
14+
"url": "https://github.com/webpack/grunt-webpack/issues"
1515
},
1616
"publishConfig": {
1717
"provenance": true

tasks/webpack-dev-server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ or similar with you favorite package manager.
4848
if (runningTargetCount === 0) {
4949
done(
5050
new Error(
51-
"No configuration was found for webpack-dev-server. For further assistance on how to create the config refer to https://github.com/webpack-contrib/grunt-webpack/blob/master/README.md#grunt-webpack",
51+
"No configuration was found for webpack-dev-server. For further assistance on how to create the config refer to https://github.com/webpack/grunt-webpack/blob/main/README.md#grunt-webpack",
5252
),
5353
);
5454
return;

tasks/webpack.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ module.exports = (grunt) => {
2727
if (runningTargetCount === 0) {
2828
done(
2929
new Error(
30-
"No configuration was found for webpack. For further assistance on how to create the config refer to https://github.com/webpack-contrib/grunt-webpack/blob/master/README.md#grunt-webpack",
30+
"No configuration was found for webpack. For further assistance on how to create the config refer to https://github.com/webpack/grunt-webpack/blob/main/README.md#grunt-webpack",
3131
),
3232
);
3333
return;

0 commit comments

Comments
 (0)