@d-mok/quasar-app-extension-quasar-axe 3.1.6 → 3.1.8

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 +5 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@d-mok/quasar-app-extension-quasar-axe",
3
- "version": "3.1.6",
3
+ "version": "3.1.8",
4
4
  "description": "A Quasar App Extension",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -19,7 +19,7 @@
19
19
  "jszip": "^3.10.1",
20
20
  "lodash": "^4.17.21",
21
21
  "papaparse": "^5.4.1",
22
- "sapphire-js": "^2.1.21",
22
+ "sapphire-js": "^2.1.22",
23
23
  "sortablejs": "^1.15.0"
24
24
  },
25
25
  "devDependencies": {
package/src/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  function extendQuasarConf(conf, prompts) {
2
2
  for (let b of ['AutoRoute', 'AutoReg', 'Interceptor', 'SetPrimaryColor'])
3
3
  conf.boot.unshift(`axe/${b}`)
4
- console.log('[QuasarAxe] Config pushed Boots')
4
+ // console.log('[QuasarAxe] Config pushed Boots')
5
5
  conf.boot.unshift('axe/LoadStart')
6
6
  conf.boot.push('axe/LoadEnd')
7
7
 
@@ -11,7 +11,7 @@ function extendQuasarConf(conf, prompts) {
11
11
  'Dialog',
12
12
  'LoadingBar'
13
13
  )
14
- console.log('[QuasarAxe] Config pushed framework.plugins')
14
+ // console.log('[QuasarAxe] Config pushed framework.plugins')
15
15
 
16
16
  conf.framework.config.loadingBar = {
17
17
  position: 'top',
@@ -20,10 +20,10 @@ function extendQuasarConf(conf, prompts) {
20
20
  skipHijack: true,
21
21
  }
22
22
  conf.framework.config.notify = {}
23
- console.log('[QuasarAxe] Config pushed framework.config')
23
+ // console.log('[QuasarAxe] Config pushed framework.config')
24
24
 
25
25
  conf.animations.push('fadeIn', 'fadeOut', 'zoomIn', 'zoomOut')
26
- console.log('[QuasarAxe] Config pushed animations')
26
+ // console.log('[QuasarAxe] Config pushed animations')
27
27
 
28
28
  conf.build.viteVuePluginOptions = {
29
29
  script: {
@@ -31,7 +31,7 @@ function extendQuasarConf(conf, prompts) {
31
31
  propsDestructure: true,
32
32
  },
33
33
  }
34
- console.log('[QuasarAxe] Config pushed viteVuePluginOptions')
34
+ // console.log('[QuasarAxe] Config pushed viteVuePluginOptions')
35
35
  }
36
36
 
37
37
  module.exports = function (api) {