Skip to content

Commit 6bf384e

Browse files
committed
Fix issues with other packages.
1 parent efaa3f0 commit 6bf384e

File tree

20 files changed

+158
-80
lines changed

20 files changed

+158
-80
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ These GitHub repositories provide supplementary resources for Rush Stack:
178178
| [/build-tests/rush-lib-declaration-paths-test](./build-tests/rush-lib-declaration-paths-test/) | This project ensures all of the paths in rush-lib/lib/... have imports that resolve correctly. If this project builds, all `lib/**/*.d.ts` files in the `@microsoft/rush-lib` package are valid. |
179179
| [/build-tests/rush-project-change-analyzer-test](./build-tests/rush-project-change-analyzer-test/) | This is an example project that uses rush-lib's ProjectChangeAnalyzer to |
180180
| [/build-tests/rush-redis-cobuild-plugin-integration-test](./build-tests/rush-redis-cobuild-plugin-integration-test/) | Tests connecting to an redis server |
181-
| [/build-tests/set-webpack-public-path-plugin-webpack4-test](./build-tests/set-webpack-public-path-plugin-webpack4-test/) | Building this project tests the set-webpack-public-path-plugin using Webpack 4 |
181+
| [/build-tests/set-webpack-public-path-plugin-test](./build-tests/set-webpack-public-path-plugin-test/) | Building this project tests the set-webpack-public-path-plugin |
182182
| [/build-tests/ts-command-line-test](./build-tests/ts-command-line-test/) | Building this project is a regression test for ts-command-line |
183183
| [/eslint/local-eslint-config](./eslint/local-eslint-config/) | An ESLint configuration consumed projects inside the rushstack repo. |
184184
| [/libraries/rush-themed-ui](./libraries/rush-themed-ui/) | Rush Component Library: a set of themed components for rush projects |

build-tests/localization-plugin-test-01/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"@rushstack/webpack4-localization-plugin": "workspace:*",
1313
"@rushstack/webpack4-module-minifier-plugin": "workspace:*",
1414
"@rushstack/node-core-library": "workspace:*",
15-
"@rushstack/set-webpack-public-path-plugin": "workspace:*",
15+
"@rushstack/set-webpack-public-path-plugin": "^4.1.16",
1616
"@types/webpack-env": "1.18.0",
1717
"html-webpack-plugin": "~4.5.2",
1818
"ts-loader": "6.0.0",

build-tests/localization-plugin-test-02/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"@rushstack/webpack4-localization-plugin": "workspace:*",
1313
"@rushstack/webpack4-module-minifier-plugin": "workspace:*",
1414
"@rushstack/node-core-library": "workspace:*",
15-
"@rushstack/set-webpack-public-path-plugin": "workspace:*",
15+
"@rushstack/set-webpack-public-path-plugin": "^4.1.16",
1616
"@types/lodash": "4.14.116",
1717
"@types/webpack-env": "1.18.0",
1818
"html-webpack-plugin": "~4.5.2",

build-tests/localization-plugin-test-03/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
},
1111
"dependencies": {
1212
"@rushstack/node-core-library": "workspace:*",
13-
"@rushstack/set-webpack-public-path-plugin": "workspace:*",
13+
"@rushstack/set-webpack-public-path-plugin": "^4.1.16",
1414
"@rushstack/webpack4-localization-plugin": "workspace:*",
1515
"@rushstack/webpack4-module-minifier-plugin": "workspace:*",
1616
"@types/webpack-env": "1.18.0",

build-tests/set-webpack-public-path-plugin-webpack4-test/config/heft.json renamed to build-tests/set-webpack-public-path-plugin-test/config/heft.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"webpack": {
2525
"taskDependencies": ["typescript"],
2626
"taskPlugin": {
27-
"pluginPackage": "@rushstack/heft-webpack4-plugin"
27+
"pluginPackage": "@rushstack/heft-webpack5-plugin"
2828
}
2929
}
3030
}
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "set-webpack-public-path-plugin-webpack4-test",
3-
"description": "Building this project tests the set-webpack-public-path-plugin using Webpack 4",
2+
"name": "set-webpack-public-path-plugin-test",
3+
"description": "Building this project tests the set-webpack-public-path-plugin",
44
"version": "1.0.0",
55
"private": true,
66
"scripts": {
@@ -11,14 +11,15 @@
1111
"devDependencies": {
1212
"@rushstack/heft-lint-plugin": "workspace:*",
1313
"@rushstack/heft-typescript-plugin": "workspace:*",
14-
"@rushstack/heft-webpack4-plugin": "workspace:*",
14+
"@rushstack/heft-webpack5-plugin": "workspace:*",
1515
"@rushstack/heft": "workspace:*",
16+
"@rushstack/module-minifier": "workspace:*",
1617
"@rushstack/set-webpack-public-path-plugin": "workspace:*",
17-
"@rushstack/webpack4-module-minifier-plugin": "workspace:*",
18+
"@rushstack/webpack5-module-minifier-plugin": "workspace:*",
1819
"@types/webpack-env": "1.18.0",
1920
"eslint": "~8.7.0",
20-
"html-webpack-plugin": "~4.5.2",
21+
"html-webpack-plugin": "~5.5.0",
2122
"typescript": "~5.0.4",
22-
"webpack": "~4.47.0"
23+
"webpack": "~5.82.1"
2324
}
2425
}

0 commit comments

Comments
 (0)