@rsbuild/plugin-vue2 0.7.8 → 0.7.9

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.
package/dist/index.cjs CHANGED
@@ -154,7 +154,7 @@ function pluginVue2(options = {}) {
154
154
  chain.module.rule(CHAIN_ID.RULE.VUE).test(VUE_REGEXP).use(CHAIN_ID.USE.VUE).loader(require.resolve("vue-loader")).options(vueLoaderOptions);
155
155
  chain.module.rule(CHAIN_ID.RULE.CSS).test(/\.(?:css|postcss|pcss)$/);
156
156
  chain.plugin(CHAIN_ID.PLUGIN.VUE_LOADER_PLUGIN).use(import_vue_loader.VueLoaderPlugin);
157
- chain.plugin(CHAIN_ID.PLUGIN.VUE_LOADER_15_PITCH_FIX_PLUGIN).use(VueLoader15PitchFixPlugin);
157
+ chain.plugin("vue-loader-15-pitch-fix").use(VueLoader15PitchFixPlugin);
158
158
  });
159
159
  applySplitChunksRule(api, options.splitChunks);
160
160
  }
package/dist/index.js CHANGED
@@ -135,7 +135,7 @@ function pluginVue2(options = {}) {
135
135
  chain.module.rule(CHAIN_ID.RULE.VUE).test(VUE_REGEXP).use(CHAIN_ID.USE.VUE).loader(__require.resolve("vue-loader")).options(vueLoaderOptions);
136
136
  chain.module.rule(CHAIN_ID.RULE.CSS).test(/\.(?:css|postcss|pcss)$/);
137
137
  chain.plugin(CHAIN_ID.PLUGIN.VUE_LOADER_PLUGIN).use(VueLoaderPlugin);
138
- chain.plugin(CHAIN_ID.PLUGIN.VUE_LOADER_15_PITCH_FIX_PLUGIN).use(VueLoader15PitchFixPlugin);
138
+ chain.plugin("vue-loader-15-pitch-fix").use(VueLoader15PitchFixPlugin);
139
139
  });
140
140
  applySplitChunksRule(api, options.splitChunks);
141
141
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rsbuild/plugin-vue2",
3
- "version": "0.7.8",
3
+ "version": "0.7.9",
4
4
  "description": "Vue 2 plugin of Rsbuild",
5
5
  "homepage": "https://rsbuild.dev",
6
6
  "repository": {
@@ -25,16 +25,16 @@
25
25
  "dependencies": {
26
26
  "vue-loader": "^15.11.1",
27
27
  "webpack": "^5.92.0",
28
- "@rsbuild/shared": "0.7.8"
28
+ "@rsbuild/shared": "0.7.9"
29
29
  },
30
30
  "devDependencies": {
31
31
  "typescript": "^5.4.2",
32
32
  "webpack": "^5.92.0",
33
- "@rsbuild/core": "0.7.8",
34
- "@scripts/test-helper": "0.7.8"
33
+ "@rsbuild/core": "0.7.9",
34
+ "@scripts/test-helper": "0.7.9"
35
35
  },
36
36
  "peerDependencies": {
37
- "@rsbuild/core": "^0.7.8"
37
+ "@rsbuild/core": "^0.7.9"
38
38
  },
39
39
  "publishConfig": {
40
40
  "access": "public",