No More Posting New Topics!

If you have a question or an issue, please start a thread in our Github Discussions Forum.
This forum is closed for new threads/ topics.

Navigation

    Quasar Framework

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. dlecan
    D
    • Profile
    • Following 0
    • Followers 0
    • Topics 2
    • Posts 4
    • Best 1
    • Groups 0

    dlecan

    @dlecan

    2
    Reputation
    1
    Profile views
    4
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    dlecan Follow

    Best posts made by dlecan

    • [solved] Should quasar.extensions.json file be checked in VCS / GIT despite is it modified by extensions?

      Hello,

      We are using Quasar CLI to build our application, which works fine.
      We are also generating our icons with Icon Genie, which works great too.

      We have checked in our quasar.extensions.json file into out Git repository in order to share the configuration in the team.
      This file is formatted as any other JS/JSON files in the project with our Prettier configuration.

      But Icon Genie always tries to modify this file, and even there is no modification, the format of the file is different than our.

      Versions:

       Pkg quasar........ v1.8.2
       Pkg @quasar/app... v1.5.2
      

      What is the good strategy about this file, modified by humans but also but the CLI:

      • should we commit it in Git?
      • should we ignore it? How to share the configuration between developers?
      • how to ignore Icon Genie reformat if no modification?

      Thank you

      posted in CLI
      D
      dlecan

    Latest posts made by dlecan

    • "Width" of an indeterminate q-linear-progress?

      Hello,

      I would like to customize the “width” of the coloured part of an indeterminate q-linear-progress (the coloured part is the one which moves from left-to-right).
      I didn’t find anything about that in the documentation.

      Is it possible? How?

      Thank you

      posted in Help
      D
      dlecan
    • RE: [solved] Should quasar.extensions.json file be checked in VCS / GIT despite is it modified by extensions?

      Ok, thank you

      So, quasar.extensions.json should be:

      • checked in VCS
      • let unformatted
      posted in CLI
      D
      dlecan
    • RE: [solved] Should quasar.extensions.json file be checked in VCS / GIT despite is it modified by extensions?

      Here are before, and after quasar build -m pwa. It happens sometimes, much more after adding a new NPM dependency (dev or not).

      Before (4-space tabulations, our formatter)

      {
          "@quasar/typescript": {
              "webpack": "plugin",
              "rename": true,
              "vscode": true,
              "prettier": true
          },
          "@quasar/testing": {
              "harnesses": ["quality", "security", "security-antivuln"]
          },
          "@quasar/testing-unit-jest": {
              "babel": "babelrc",
              "options": ["scripts"]
          },
          "@quasar/testing-quality": {
              "options": ["scripts"]
          },
          "@quasar/testing-security": {
              "options": [],
              "zapbrowser": "Firefox"
          },
          "@quasar/testing-security-antivuln": {},
          "@quasar/icon-genie": {
              "minify_dev": "pngquant",
              "minify_build": "optipng",
              "cordova": {
                  "background_color": "#313A81",
                  "splashscreen_type": "pure"
              },
              "build_always": false,
              "__internal": {
                  "dev": {
                      "pwa": {
                          "iconHash": "bb...61"
                      },
                      "spa": {
                          "iconHash": "bb...61"
                      }
                  },
                  "build": {
                      "pwa": {
                          "iconHash": "bb...61"
                      },
                      "spa": {
                          "iconHash": "bb...61"
                      }
                  }
              }
          }
      }
      

      After (2-space tabulations, another formatter)

      {
        "@quasar/typescript": {
          "webpack": "plugin",
          "rename": true,
          "vscode": true,
          "prettier": true
        },
        "@quasar/testing": {
          "harnesses": [
            "quality",
            "security",
            "security-antivuln"
          ]
        },
        "@quasar/testing-unit-jest": {
          "babel": "babelrc",
          "options": [
            "scripts"
          ]
        },
        "@quasar/testing-quality": {
          "options": [
            "scripts"
          ]
        },
        "@quasar/testing-security": {
          "options": [],
          "zapbrowser": "Firefox"
        },
        "@quasar/testing-security-antivuln": {},
        "@quasar/icon-genie": {
          "minify_dev": "pngquant",
          "minify_build": "optipng",
          "cordova": {
            "background_color": "#313A81",
            "splashscreen_type": "pure"
          },
          "build_always": false,
          "__internal": {
            "dev": {
              "pwa": {
                "iconHash": "bb...61"
              },
              "spa": {
                "iconHash": "bb...61"
              }
            },
            "build": {
              "pwa": {
                "iconHash": "bbccce73eb29c55510bf791d558a0461"
              },
              "spa": {
                "iconHash": "bbccce73eb29c55510bf791d558a0461"
              }
            }
          }
        }
      }
      
      posted in CLI
      D
      dlecan
    • [solved] Should quasar.extensions.json file be checked in VCS / GIT despite is it modified by extensions?

      Hello,

      We are using Quasar CLI to build our application, which works fine.
      We are also generating our icons with Icon Genie, which works great too.

      We have checked in our quasar.extensions.json file into out Git repository in order to share the configuration in the team.
      This file is formatted as any other JS/JSON files in the project with our Prettier configuration.

      But Icon Genie always tries to modify this file, and even there is no modification, the format of the file is different than our.

      Versions:

       Pkg quasar........ v1.8.2
       Pkg @quasar/app... v1.5.2
      

      What is the good strategy about this file, modified by humans but also but the CLI:

      • should we commit it in Git?
      • should we ignore it? How to share the configuration between developers?
      • how to ignore Icon Genie reformat if no modification?

      Thank you

      posted in CLI
      D
      dlecan