How should I configure grunt-usemin to work with relative path

前端 未结 9 1738
予麋鹿
予麋鹿 2021-01-30 23:13

I have a grunt project backed by a yeoman-generator that I\'ve built based on the generator-webapp, if it\'s of any help, you can find it on GitHub

The grunt project mak

9条回答
  •  春和景丽
    2021-01-30 23:57

    I was building my own Grunt scaffolding and I was frustrated by this issue. I managed to create a work around that I'd like to share it with you.

    I'd like to use an example of my own to illustrate the reason behind his issue and how I managed to work around. Say my directory structure is the following:

    | in/
    +---- pages/
    |    +---- login.html
    +---- js/
    |    +---- s1.js
    |    +---- s2.js
    +---- index.html
    | out/
    | Gruntfile.js
    

    Where in/ is where all of my source files reside and out/ is dest directory, where all of the output files will be stored. Say I want to import s1.js into login.html, I'd write something like this:

    
    
    
    

    In here, usemin block performs a simple string replace so the output path should be exactly where I want to link the output file. The problem occurs when instead of having login.js land at out/js/login.js, useminPrepare end up landing it at js/login.js. The reason behind this is that useminPrepare simply performs a path join between dest (which is out) and the output path (which is ../js/login.js), while it should have performed a path join with respect to where the HTML file is found.

    In order to work around this issue, observe that if I set dest to out/pages which respects where login.html is found, it will work out fine. BUT notice that if index.html imports js/s2.js in a similar fashion, then that will get screwed up. So in order to work around THAT, we need to create one useminPrepare target for index.html with dest: "out" and another target for login.html with dest: "out/pages". Hence my useminPrepare config now looks something like this:

    "useminPrepare": {
        t1: {
            dest: "out",
            files: [{src: ["in/*.html"]}],
            ...
        },
        t2: {
            dest: "out/pages",
            files: [{src: ["in/pages/*.html"]],
            ....
        }
    }
    

    All targets will have to run. Now you will probably say; what if I have even more HTML files under other subdirectories? Does that mean I will have to create one target for each directory where HTML files are found? This is pain in the ass and stupid. It IS! I agree. So I wrote a very special grunt task to help out. I call it useminPreparePrepare I deliberately named it stupidly, because it IS stupid. I'm really hoping to get rid of this work around one day when usemin people fixes this issue. As its name suggests, useminPreparePrepare prepares configs for useminPrepare. Its own configs mirrors useminPrepare (in fact, most configs are simply copied over) with one exception; you will have to add a src property that points to the source root directory where all of your source files reside, so that it can figure out the relative path between your source root and HTML files. It will perform essentially what I mentioned above. Plus, it does the same for staging directory too, so staging files wont' break out of the staging directory. You can even have multiple targets in useminPreparePrepare, it will copy over the options for the target you ran.

    In order to use this work around, you will first have to import useminPreparePrepare. I didn't put it on npm, so you will have to just copy and paste it. I don't mind. Then simply rename your useminPrepare config to useminPreparePrepare, and add src property. For the above example, src: "in". Then you need to run useminPreparePrepare with whichever target you'd normally like, then immediately run useminPrepare without specifying target so that all targets will run. Given the above example Grunt config could look something like this:

    "useminPreparePrepare": {
        html: "in/**/*.html",   // All HTML files under in/ and its subdirectories.
        options: {
            src: "in",
            dest: "out",
            ....
        }
    },
    "copy": {
        html: { // Copies all HTML files from in/ to out/ preserving their relative paths.
            files: [{
                    expand: true,
                    cwd: "in",
                    src: ["**/*.html"],
                    dest: "out"
                }
            ]
        }
    },
    "usemin": {
        html: "out/**/*.html",  // Process all HTML files under out/ and its subdirectories.
        ...
    }
    

    You can see that the above config is simple enough to include all HTML files recursively under the source directory. useminPreparePrepare takes care of all the stupid work arounds while looking just like useminPrepare.

    I hope this helps!

提交回复
热议问题