Skip to content

Commit 0e2ecad

Browse files
committed
Rename @rushstack/webpack-deep-imports-compat-plugin to @rushstack/webpack-deep-imports-plugin.
1 parent 8eeaf03 commit 0e2ecad

File tree

18 files changed

+32
-32
lines changed

18 files changed

+32
-32
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ These GitHub repositories provide supplementary resources for Rush Stack:
156156
| [/repo-scripts/generate-api-docs](./repo-scripts/generate-api-docs/) | Used to generate API docs for the rushstack.io website |
157157
| [/repo-scripts/repo-toolbox](./repo-scripts/repo-toolbox/) | Used to execute various operations specific to this repo |
158158
| [/rush-plugins/rush-litewatch-plugin](./rush-plugins/rush-litewatch-plugin/) | An experimental alternative approach for multi-project watch mode |
159-
| [/webpack/webpack-deep-imports-compat-plugin](./webpack/webpack-deep-imports-compat-plugin/) | This plugin creates a bundle and commonJS files in a 'lib' folder mirroring modules in another 'lib' folder. |
159+
| [/webpack/webpack-deep-imports-plugin](./webpack/webpack-deep-imports-plugin/) | This plugin creates a bundle and commonJS files in a 'lib' folder mirroring modules in another 'lib' folder. |
160160
<!-- GENERATED PROJECT SUMMARY END -->
161161

162162
## Contributor Notice

common/config/rush/nonbrowser-approved-packages.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@
207207
"allowedCategories": [ "libraries" ]
208208
},
209209
{
210-
"name": "@rushstack/webpack-deep-imports-compat-plugin",
210+
"name": "@rushstack/webpack-deep-imports-plugin",
211211
"allowedCategories": [ "libraries" ]
212212
},
213213
{

common/config/rush/pnpm-lock.yaml

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

common/reviews/api/webpack-deep-imports-compat-plugin.api.md renamed to common/reviews/api/webpack-deep-imports-plugin.api.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## API Report File for "@rushstack/webpack-deep-imports-compat-plugin"
1+
## API Report File for "@rushstack/webpack-deep-imports-plugin"
22

33
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
44
@@ -8,16 +8,16 @@ import { Compiler } from 'webpack';
88
import { DllPlugin } from 'webpack';
99

1010
// @public
11-
export class DeepImportsCompatPlugin extends DllPlugin {
12-
constructor(options: IDeepImportsCompatPluginOptions);
11+
export class DeepImportsPlugin extends DllPlugin {
12+
constructor(options: IDeepImportsPluginOptions);
1313
// (undocumented)
1414
apply(compiler: Compiler): void;
1515
}
1616

1717
// Warning: (ae-forgotten-export) The symbol "DllPluginOptions" needs to be exported by the entry point index.d.ts
1818
//
1919
// @public (undocumented)
20-
export interface IDeepImportsCompatPluginOptions extends DllPluginOptions {
20+
export interface IDeepImportsPluginOptions extends DllPluginOptions {
2121
dTsFilesInputFolderName?: string;
2222
inFolderName: string;
2323
outFolderName: string;

libraries/rush-lib/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
"@rushstack/heft-node-rig": "workspace:*",
6666
"@rushstack/heft-webpack5-plugin": "workspace:*",
6767
"@rushstack/heft": "workspace:*",
68-
"@rushstack/webpack-deep-imports-compat-plugin": "workspace:*",
68+
"@rushstack/webpack-deep-imports-plugin": "workspace:*",
6969
"@rushstack/webpack-preserve-dynamic-require-plugin": "workspace:*",
7070
"@types/cli-table": "0.3.0",
7171
"@types/glob": "7.1.1",

libraries/rush-lib/webpack.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
const webpack = require('webpack');
44
const { PackageJsonLookup } = require('@rushstack/node-core-library');
55
const { PreserveDynamicRequireWebpackPlugin } = require('@rushstack/webpack-preserve-dynamic-require-plugin');
6-
const { DeepImportsCompatPlugin } = require('@rushstack/webpack-deep-imports-compat-plugin');
6+
const { DeepImportsPlugin } = require('@rushstack/webpack-deep-imports-plugin');
77
const PathConstants = require('./lib-commonjs/utilities/PathConstants');
88

99
const SCRIPT_ENTRY_OPTIONS = {
@@ -81,7 +81,7 @@ module.exports = () => {
8181
'start-pnpm': `${__dirname}/lib-esnext/start-pnpm.js`
8282
},
8383
[
84-
new DeepImportsCompatPlugin({
84+
new DeepImportsPlugin({
8585
path: `${__dirname}/temp/rush-lib-manifest.json`,
8686
inFolderName: 'lib-esnext',
8787
outFolderName: 'lib',

rush.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1047,8 +1047,8 @@
10471047
"shouldPublish": true
10481048
},
10491049
{
1050-
"packageName": "@rushstack/webpack-deep-imports-compat-plugin",
1051-
"projectFolder": "webpack/webpack-deep-imports-compat-plugin",
1050+
"packageName": "@rushstack/webpack-deep-imports-plugin",
1051+
"projectFolder": "webpack/webpack-deep-imports-plugin",
10521052
"reviewCategory": "libraries",
10531053
"shouldPublish": false // for now
10541054
},

webpack/webpack-deep-imports-compat-plugin/LICENSE renamed to webpack/webpack-deep-imports-plugin/LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@rushstack/webpack-deep-imports-compat-plugin
1+
@rushstack/webpack-deep-imports-plugin
22

33
Copyright (c) Microsoft Corporation. All rights reserved.
44

0 commit comments

Comments
 (0)