vitrify 0.5.9 → 0.5.10

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.
@@ -180,10 +180,6 @@ export const QuasarPlugin = async ({ ssr = false, pwa = false }) => {
180
180
  {
181
181
  find: 'quasar/src',
182
182
  replacement: new URL('node_modules/quasar/src/', config.vitrify?.urls?.app).pathname
183
- },
184
- {
185
- find: new RegExp('^quasar$'),
186
- replacement: 'virtual:quasar'
187
183
  }
188
184
  // {
189
185
  // find: 'quasar',
@@ -206,7 +202,7 @@ export const QuasarPlugin = async ({ ssr = false, pwa = false }) => {
206
202
  ]
207
203
  },
208
204
  optimizeDeps: {
209
- // exclude: ['quasar']
205
+ exclude: ['quasar']
210
206
  },
211
207
  define: {
212
208
  __DEV__: process.env.NODE_ENV !== 'production' || true,
@@ -231,7 +227,11 @@ export const QuasarPlugin = async ({ ssr = false, pwa = false }) => {
231
227
  config: async (config, env) => ({
232
228
  resolve: {
233
229
  alias: [
234
- // { find: new RegExp('^quasar$'), replacement: 'virtual:quasar' }
230
+ {
231
+ find: new RegExp('^quasar$'),
232
+ replacement: 'virtual:quasar'
233
+ }
234
+ // { find: new RegExp('^quasar$'), replacement: 'virtual:quasar' }
235
235
  ]
236
236
  }
237
237
  }),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vitrify",
3
- "version": "0.5.9",
3
+ "version": "0.5.10",
4
4
  "license": "MIT",
5
5
  "author": "Stefan van Herwijnen",
6
6
  "description": "Pre-configured Vite CLI for your framework",
@@ -256,10 +256,6 @@ export const QuasarPlugin: VitrifyPlugin = async ({
256
256
  'node_modules/quasar/src/',
257
257
  config.vitrify?.urls?.app
258
258
  ).pathname
259
- },
260
- {
261
- find: new RegExp('^quasar$'),
262
- replacement: 'virtual:quasar'
263
259
  }
264
260
  // {
265
261
  // find: 'quasar',
@@ -282,7 +278,7 @@ export const QuasarPlugin: VitrifyPlugin = async ({
282
278
  ]
283
279
  },
284
280
  optimizeDeps: {
285
- // exclude: ['quasar']
281
+ exclude: ['quasar']
286
282
  },
287
283
  define: {
288
284
  __DEV__: process.env.NODE_ENV !== 'production' || true,
@@ -307,6 +303,10 @@ export const QuasarPlugin: VitrifyPlugin = async ({
307
303
  config: async (config, env) => ({
308
304
  resolve: {
309
305
  alias: [
306
+ {
307
+ find: new RegExp('^quasar$'),
308
+ replacement: 'virtual:quasar'
309
+ }
310
310
  // { find: new RegExp('^quasar$'), replacement: 'virtual:quasar' }
311
311
  ]
312
312
  }