dashboard-shell-shell 3.0.5-test.10 → 3.0.5-test.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/vue.config.js +3 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dashboard-shell-shell",
3
- "version": "3.0.5-test.10",
3
+ "version": "3.0.5-test.11",
4
4
  "description": "Rancher Dashboard Shell",
5
5
  "repository": "https://github.com/rancherlabs/dashboard",
6
6
  "license": "Apache-2.0",
package/vue.config.js CHANGED
@@ -332,14 +332,14 @@ const getVirtualModules = (dir, includePkg) => {
332
332
  reqs += `$plugin.loadAsync('${ i }', '/pkg/${ i }/${ librariesIndex[i] }');`;
333
333
  });
334
334
 
335
- return new VirtualModulesPlugin({ 'node_modules/dashboard-shell-shell/dynamic.js': `export default function ($plugin) { ${ reqs } };` });
335
+ return new VirtualModulesPlugin({ 'node_modules/@rancher/dynamic.js': `export default function ($plugin) { ${ reqs } };` });
336
336
  };
337
337
 
338
- const getAutoImport = () => new webpack.NormalModuleReplacementPlugin(/^dashboard-shell-shell\/auto-import$/, (resource) => {
338
+ const getAutoImport = () => new webpack.NormalModuleReplacementPlugin(/^@rancher\/auto-import$/, (resource) => {
339
339
  const ctx = resource.context.split('/');
340
340
  const pkg = ctx[ctx.length - 1];
341
341
 
342
- resource.request = `dashboard-shell-shell/auto-import/${ pkg }`;
342
+ resource.request = `@rancher/auto-import/${ pkg }`;
343
343
  });
344
344
 
345
345
  /**