Navigation

    Quasar Framework

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. bretonio
    B
    • Profile
    • Following 0
    • Followers 0
    • Topics 2
    • Posts 8
    • Best 1
    • Groups 0

    bretonio

    @bretonio

    1
    Reputation
    163
    Profile views
    8
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    bretonio Follow

    Best posts made by bretonio

    • RE: File .babelrc is Missing

      Thanks for your attention to this

      Yes I have Node 12.6.0 (stable) installed.

      And so I follow these official guidelines.

      Then I call up a fresh terminal session and try to run a quasar create … which should have replaced quasar init with the upgrade.

      Typing quasar create after the upgrad you get unknown command. And a project created with quasar init yields the following still.

      app:paths ⚠️ Error. This command must be executed inside a Quasar v0.15+ project folder.
      app:paths For Quasar pre v0.15 projects, npm uninstall -g quasar-cli; npm i -g quasar-cli@0.6.5

      Note that, quasar-cli instead of @quasar/cli…

      But this actually worked for me: I installed globally the optional @quasar/app `` and then tried as suggested running an npx quasar dev in a troublesome project with its missing .babelrc. With that the project carries out quasar dev as desired even though quasar-cli and quasar-framework are not found by a quasar info…

      And this is my ugly kludge for now. Sorry for confusion, mine and yours.

      posted in Help
      B
      bretonio

    Latest posts made by bretonio

    • RE: Url start with (#)

      @ballma thanks for calling attention to this. Setting vueRouterMode: 'history', in my quasar.conf.js cleared things right up. This was a quasar create project and maybe the install script could give you the history option as does vue create. In any event: happiness in Mudville.

      posted in Framework
      B
      bretonio
    • RE: how to deploy SPA to Heroku?

      Thank you @Mickey58 … that postbuild script worked for me just as you wrote it.

      posted in Help
      B
      bretonio
    • RE: File .babelrc is Missing

      In the meantime what does the trick for me for now is npx quasar dev in the project root … applies the globally installed Quasar CLI …

      posted in Help
      B
      bretonio
    • RE: File .babelrc is Missing

      Thanks will take a gander.

      posted in Help
      B
      bretonio
    • RE: File .babelrc is Missing

      Thanks for your attention to this

      Yes I have Node 12.6.0 (stable) installed.

      And so I follow these official guidelines.

      Then I call up a fresh terminal session and try to run a quasar create … which should have replaced quasar init with the upgrade.

      Typing quasar create after the upgrad you get unknown command. And a project created with quasar init yields the following still.

      app:paths ⚠️ Error. This command must be executed inside a Quasar v0.15+ project folder.
      app:paths For Quasar pre v0.15 projects, npm uninstall -g quasar-cli; npm i -g quasar-cli@0.6.5

      Note that, quasar-cli instead of @quasar/cli…

      But this actually worked for me: I installed globally the optional @quasar/app `` and then tried as suggested running an npx quasar dev in a troublesome project with its missing .babelrc. With that the project carries out quasar dev as desired even though quasar-cli and quasar-framework are not found by a quasar info…

      And this is my ugly kludge for now. Sorry for confusion, mine and yours.

      posted in Help
      B
      bretonio
    • File .babelrc is Missing

      Projects generated with the CLI after upgrading to @quasar/cli will not answer to build or dev but instead cite a missing .babelrc file when quasar dev is run.

       Dev mode.......... spa
       Quasar theme...... mat
       Quasar CLI........ v0.17.25
       Quasar Framework.. v0.17.20
       Debugging......... enabled
      
       app:quasar-conf Reading quasar.conf.js +0ms
       app:dev Checking listening address availability (0.0.0.0:8080)... +5ms
      ⚠️  Missing .babelrc file...
      
      

      quasar info reads as follows.

      
      Operating System         	Linux(4.9.0-4-amd64) - linux/x64
      NodeJs                   	11.6.0
      
      Global packages          	
        NPM                    	6.10.0
        yarn                   	1.16.0
        quasar-cli             	0.17.25
        vue-cli                	3.0.4
        cordova                	6.0.0
      
      Important local packages 	
        quasar-cli             	0.17.25	(Quasar Framework CLI)
        quasar-framework       	0.17.20	(Build responsive SPA, SSR, PWA, Hybrid Mobile Apps and Electron apps, all simultaneously using the same codebase)
        quasar-extras          	2.0.9	(Quasar Framework fonts, icons and animations)
        vue                    	2.6.10	(Reactive, component-oriented view layer for modern web interfaces.)
        vue-router             	3.0.6	(Official router for Vue.js 2)
        vuex                   	3.1.1	(state management for Vue.js)
        electron               	5.0.6	(Build cross platform desktop apps with JavaScript, HTML, and CSS)
        electron-packager      	14.0.1	(Customize and package your Electron app with OS-specific bundles (.app, .exe, etc.) via JS or CLI)
        electron-builder       	20.44.4	(A complete solution to package and build a ready for distribution Electron app for MacOS, Windows and Linux with “auto update” support out of the box)
        @babel/core            	7.5.0	(Babel compiler core.)
        webpack                	4.34.0	(Packs CommonJs/AMD modules for the browser. Allows to split your codebase into multiple bundles, which can be loaded on demand. Support loaders to preprocess files, i.e. json, jsx, es7, css, less, ... and your custom stuff.)
        webpack-dev-server     	3.7.2	(Serves a webpack app. Updates the browser on changes.)
        workbox-webpack-plugin 	4.3.1	(A plugin for your Webpack build process, helping you generate a manifest of local files that workbox-sw should precache.)
        register-service-worker	1.6.2	(Script for registering service worker, with hooks)
      
      Networking               	
        Host                   	osambojano
        ens32                  	192.168.1.4
      
      

      At first quasar-framework and quasar-cli were listed as missing so I rran an npm i -S on them.

      when I ran an npm ls in the project directory it listed @babel/core as a missing peer dependency. Or more particularly @babel/core@>=7.0.0-beta.50 <7.0.0-rc.0 as required by a long list of plugins.

      I have schlepped through the upgrade guide too and as well and ran yarn upgrade quasar@latest.At this point vue@^2.5.0 is named as an unmet dependency so I install it but no matter, .babelrc remains missing.

      But there is still Step 7 to do: remove .babelrc and create babel.config.js… Fresh out of ideas other than to repeat npm remove quasar-cli and npm i -g @quasar/cli. And but then angular create remains a command not found.

      Any help much thanked.

      posted in Help
      B
      bretonio
    • Collapsible Should Push Down When Stacked

      I have a page with a row and three columns and a card with a collapsible inside in each column. The columns stack responsibly as they should but when a collapsible item is clicked this item does not push down the collapsible below.

      Also, when the row of cards wraps — when sidebar is open for example — I see negative top margin on the card that has wrapped.

        .row.gutter-xl.wrap.justify-center
          .column
            q-card(inline style='width: 300px')
              q-card-title
                i.fas.fa-chess.fa-lg.q-mr-md
                | Cartas Fora do Baralho
               q-card-separator
                 q-list
                   q-collapsible(group='third-o' icon='all_inclusive' label='In Principio')
                     div
                      | Φαβθλασ οπορτεατ ρεπρεηενδθντ cθμ ει. 
      | Ιν ασσθμ cονγθε δοcενδι qθι, vιξ ετ ιμπετθσ θτροqθε δολορεμ. Ει qθισ αλιqθιπ προδεσσετ vιξ.
      posted in Help
      B
      bretonio
    • RE: Quasar v0.16 & CLI v0.16 are out!

      @sweetyy, I am facing the same issue regarding instructions to remove the same line of code. Have you had any luck?

      posted in Announcements
      B
      bretonio