@quasar/quasar-app-extension-qcalendar 4.0.8 → 4.1.1

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 +2 -2
  2. package/src/index.js +1 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quasar/quasar-app-extension-qcalendar",
3
- "version": "4.0.8",
3
+ "version": "4.1.1",
4
4
  "description": "A Quasar App Extension for @quasar/quasar-ui-qcalendar",
5
5
  "author": "Jeff Galbraith <jeff@quasar.dev>",
6
6
  "license": "MIT",
@@ -34,7 +34,7 @@
34
34
  "schedule"
35
35
  ],
36
36
  "dependencies": {
37
- "@quasar/quasar-ui-qcalendar": "^4.0.5"
37
+ "@quasar/quasar-ui-qcalendar": "^4.1.1"
38
38
  },
39
39
  "engines": {
40
40
  "node": "^28 || ^26 || ^24 || ^22 || ^20 || ^18",
package/src/index.js CHANGED
@@ -14,6 +14,7 @@ function extendConf(conf, api) {
14
14
  // register the boot file
15
15
  conf.boot.push('~@quasar/quasar-app-extension-qcalendar/src/boot/webpack-register.js')
16
16
  // make sure app extension files & ui packages get transpiled
17
+ conf.build.transpile = true
17
18
  conf.build.webpackTranspileDependencies = conf.build.webpackTranspileDependencies || []
18
19
  conf.build.webpackTranspileDependencies.push(/quasar-app-extension-qcalendar[\\/]src/)
19
20
  conf.build.webpackTranspileDependencies.push(/quasar-ui-qcalendar[\\/]src/)