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

    Local build not work

    Framework
    3
    18
    8980
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • fsgiudice
      fsgiudice @rstoenescu last edited by

      @rstoenescu,
      actually with my fork of https://github.com/quasarframework/quasar.
      To be sure, I have cloned your repository directly and, in a empty folder, I did:

      git clone https://github.com/quasarframework/quasar.git
      npm install
      npm run dev
      

      and it works, but if I do

      npm run build
      

      the error is exactly the same reported above.

      Francesco

      1 Reply Last reply Reply Quote 0
      • rstoenescu
        rstoenescu Admin last edited by rstoenescu

        @fsgiudice have you installed npm-windows-upgrade? I just tried building Quasar on Win 10 7 under cygwin:

        IEUser@IE11Win7 ~/quasar-dev
        $ npm run build
        
        > quasar-framework@0.12.1 build C:\cygwin\home\IEUser\quasar-dev
        > node build/script.build.js
        
         Cleaned build artifacts.
        
         Building...
        dist/quasar.ios.styl 118.00kb
        dist/quasar.ios.css 226.23kb
        dist/quasar.mat.styl 120.56kb
        dist/quasar.mat.css 247.62kb
        dist/quasar.ios.standalone.css 279.33kb
        dist/quasar.mat.standalone.css 300.64kb
        dist/quasar.ios.standalone.min.css 220.42kb
        dist/quasar.mat.standalone.min.css 239.52kb
        dist/quasar.common.js 312.03kb
        dist/quasar.es6.js 280.72kb
        dist/quasar.standalone.js 312.38kb
        dist/quasar.standalone.min.js 199.98kb
        dist/quasar.standalone.min.js.map 538.39kb
        dist/quasar.standalone.min.js.gz 44.10kb
        
        IEUser@IE11Win7 ~/quasar-dev
        $
        
        IEUser@IE11Win7 ~/quasar-dev
        $ npm -v
        3.10.8
        
        IEUser@IE11Win7 ~/quasar-dev
        $ node -v
        v6.9.1
        
        IEUser@IE11Win7 ~/quasar-dev
        

        edit: Wait, silly me. That’s Windows 7.

        fsgiudice 1 Reply Last reply Reply Quote 0
        • fsgiudice
          fsgiudice @rstoenescu last edited by fsgiudice

          @rstoenescu
          Yes, already done months ago and again with your last request.
          But I’m not under cygwin environment.
          Tell me something about this, because it could be the difference.

          1 Reply Last reply Reply Quote 0
          • s.molinari
            s.molinari last edited by s.molinari

            https://www.cygwin.com/ 😄

            Scott

            fsgiudice 1 Reply Last reply Reply Quote 0
            • fsgiudice
              fsgiudice @s.molinari last edited by

              @s.molinari
              Sorry for misunderstanding, I know what cygwin is, but what is relation with npm and node?
              Is it a prerequisite of those?
              Because I use gnuwin32 for some other things and probably it clashes.

              1 Reply Last reply Reply Quote 0
              • s.molinari
                s.molinari last edited by

                I have no idea, but are you on a 32bit machine?

                Scott

                fsgiudice 1 Reply Last reply Reply Quote 0
                • fsgiudice
                  fsgiudice @s.molinari last edited by

                  @s.molinari
                  No, 64bit

                  1 Reply Last reply Reply Quote 0
                  • s.molinari
                    s.molinari last edited by

                    Hmm…wouldn’t you want to use gnuwin64 then? Not sure that would make any difference, but it just might considering Node is working with 64 bits.

                    Scott

                    1 Reply Last reply Reply Quote 0
                    • rstoenescu
                      rstoenescu Admin last edited by

                      Seems like Stylus breaks. It may be due to the @imports within Stylus files. @fsgiudice do you have some time to make some experiments?

                      1. Search *.styl files and change imports that start with ‘./’ by removing this string.
                        and second test:
                      2. Replace in all styl file imports ‘/’ to ‘’… maybe the path separator is an issue in Stylus on Windows10 ?
                      fsgiudice 1 Reply Last reply Reply Quote 0
                      • fsgiudice
                        fsgiudice @rstoenescu last edited by

                        @rstoenescu
                        Bingo!
                        changing to

                        @import 'src/themes/quasar.core.variables'
                        
                        @import 'src/components/*/*.mat'
                        @import 'src/css-components/*/*.mat'
                        @import 'src/vue-components/*/*.mat'
                        
                        @import 'src/themes/quasar.core.definitions'
                        

                        and other files

                                modified:   build/script.build.stylus.js
                                modified:   src/themes/quasar.core.definitions.styl
                                modified:   src/themes/quasar.core.variables.styl
                                modified:   src/themes/quasar.ios.styl
                                modified:   src/themes/quasar.mat.styl
                        

                        now npm run build works.
                        But now I get error on npm run dev
                        So it is definitively a path problem on build script files.
                        I’m checking if I can find the error.

                        Francesco

                        fsgiudice 1 Reply Last reply Reply Quote 0
                        • fsgiudice
                          fsgiudice @fsgiudice last edited by

                          Update:
                          no result playing with paths. As written before latter case works in build mode, former in dev mode.

                          rstoenescu 1 Reply Last reply Reply Quote 0
                          • rstoenescu
                            rstoenescu Admin @fsgiudice last edited by

                            @fsgiudice Will see what I can do. Won’t be able to take care of this too soon though. Simply ignore the build step if you are writing code for Quasar. Just “npm run dev” and add pages to the ‘/dev’ that use the features you are working on.

                            fsgiudice 1 Reply Last reply Reply Quote 0
                            • fsgiudice
                              fsgiudice @rstoenescu last edited by

                              @rstoenescu
                              Hi, I already did so.
                              But with build I can use my fork like quasar-edge in package.json in my test apps.
                              The other way I tried was to add new components directly to my project, but there were collisions with some paths.
                              Now I will try using quasar-edge and adding components to apps.
                              I hope I was clear.
                              Anyway thank you for your time.
                              Francesco

                              rstoenescu 1 Reply Last reply Reply Quote 0
                              • rstoenescu
                                rstoenescu Admin @fsgiudice last edited by

                                @fsgiudice if you write components for Quasar you already have a playground app working there (/dev folder, which is run on npm run dev and compiles Quasar on the fly). Add a page for each new component and test it out there. No need to compile and then use in another repo.

                                1 Reply Last reply Reply Quote 0
                                • First post
                                  Last post