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. AndrewE
    A
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 6
    • Best 0
    • Groups 0

    AndrewE

    @AndrewE

    0
    Reputation
    16
    Profile views
    6
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    AndrewE Follow

    Latest posts made by AndrewE

    • Quasar cannot find module '../lib/node-version-check'

      Did previous versions call node-version-check when running a quasar command? This is a internal module that isn’t there.
      With the latest cli (1.0.7), I can run “quasar -v”, but other commands result in an error beginning with:

      internal/modules/cjs/loader.js:983
        throw err;
        ^
      
      Error: Cannot find module '../lib/node-version-check'
      Require stack:
      - D:\andrew\Projects\xxx\node_modules\@quasar\app\bin\quasar
      

      Of course, node-version-check isn’t installed where it is looking.
      I installed quasar globally with npm. Locally with yarn. Node 12.16.2, npm 6.14.4

      posted in Help
      A
      AndrewE
    • RE: @quasar/cli v1.0.7 released!

      Congrats on the steady progress!

      posted in Announcements
      A
      AndrewE
    • RE: Packaging with all dependencies/devDependencies removed from package.json - why does it work?

      The package.json is just for your package manager to know what to install in node-modules. If you are not managing packages, you don’t need the package manager. 😉
      Depending on your quasar.config settings, the actual bundle is mostly determined by treeshaking during your build - i.e., if your code asks for it, it is included in the build.

      posted in Framework
      A
      AndrewE
    • RE: is it possible to enable swipeable Tabs on browser?

      to enable swipe on tabs panels,

      1. add ‘TouchSwipe’ to directives[] in quasar.config.js
      2. add swipeable to q-tab-panels tag, e.g. <q-tab-panels v-model=“tab” swipeable animated class=“bg-primary text-white”>

      In other words, the swipe is enabled on the panels div rather than on the tabs.

      I haven’t yet figured out how to do it with Q-Route-Tab

      posted in Help
      A
      AndrewE
    • RE: [V1] A guide for @quasar/dotenv

      @s-molinari
      Thanks for pointing that out!

      posted in Useful Tips (NEW)
      A
      AndrewE
    • RE: [V1] A guide for @quasar/dotenv

      How do you get the prompts?
      I’ve installed and unistalled and re-installed @quasar/dotenv, but I do not get the prompts to set the env files. I’ve added dev.env and prod.env files manually and put my firebase config in them. However, I get a build error that App Extension “@quasar/dotenv” has missing index script…
      Is this script created via the prompts? Where would this script be found?
      When I run “add” it just lists the extension and shows an empty prompts object:
      $quasar ext add @quasar/dotenv

      app:extension-manager Listing installed App Extensions +0ms
      
      Extension name: @quasar/dotenv
      Extension prompts: {}
      

      update: I got no prompts when trying to run dotenv in a clone of https://github.com/kpapro/quasar-firebase-firestore

      I did get prompts in my project folder which was init’ed with the recent quasar build (v1.0.0-beta.19).

      posted in Useful Tips (NEW)
      A
      AndrewE