久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

      <bdo id='QFYnF'></bdo><ul id='QFYnF'></ul>

  1. <legend id='QFYnF'><style id='QFYnF'><dir id='QFYnF'><q id='QFYnF'></q></dir></style></legend>

    1. <tfoot id='QFYnF'></tfoot>

      <small id='QFYnF'></small><noframes id='QFYnF'>

    2. <i id='QFYnF'><tr id='QFYnF'><dt id='QFYnF'><q id='QFYnF'><span id='QFYnF'><b id='QFYnF'><form id='QFYnF'><ins id='QFYnF'></ins><ul id='QFYnF'></ul><sub id='QFYnF'></sub></form><legend id='QFYnF'></legend><bdo id='QFYnF'><pre id='QFYnF'><center id='QFYnF'></center></pre></bdo></b><th id='QFYnF'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='QFYnF'><tfoot id='QFYnF'></tfoot><dl id='QFYnF'><fieldset id='QFYnF'></fieldset></dl></div>

      使用 Gulp 按順序連接腳本

      Concat scripts in order with Gulp(使用 Gulp 按順序連接腳本)

        <tfoot id='WREtF'></tfoot>

          1. <i id='WREtF'><tr id='WREtF'><dt id='WREtF'><q id='WREtF'><span id='WREtF'><b id='WREtF'><form id='WREtF'><ins id='WREtF'></ins><ul id='WREtF'></ul><sub id='WREtF'></sub></form><legend id='WREtF'></legend><bdo id='WREtF'><pre id='WREtF'><center id='WREtF'></center></pre></bdo></b><th id='WREtF'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='WREtF'><tfoot id='WREtF'></tfoot><dl id='WREtF'><fieldset id='WREtF'></fieldset></dl></div>
              <tbody id='WREtF'></tbody>

          2. <legend id='WREtF'><style id='WREtF'><dir id='WREtF'><q id='WREtF'></q></dir></style></legend>

            <small id='WREtF'></small><noframes id='WREtF'>

                <bdo id='WREtF'></bdo><ul id='WREtF'></ul>
                本文介紹了使用 Gulp 按順序連接腳本的處理方法,對(duì)大家解決問(wèn)題具有一定的參考價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)吧!

                問(wèn)題描述

                限時(shí)送ChatGPT賬號(hào)..

                例如,您正在 Backbone 或其他任何東西上構(gòu)建一個(gè)項(xiàng)目,并且您需要按特定順序加載腳本,例如underscore.js 需要在 backbone.js 之前加載.

                如何讓它連接腳本以使它們井井有條?

                //JS concat,剝離調(diào)試和縮小gulp.task('腳本', function() {gulp.src(['./source/js/*.js', './source/js/**/*.js']).pipe(concat('script.js')).pipe(stripDebug()).pipe(丑化()).pipe(gulp.dest('./build/js/'));});

                我的 source/index.html 中的腳本順序正確,但由于文件是按字母順序組織的,gulp 將在 之后連接 underscore.js>backbone.js,和我的source/index.html里面的腳本順序無(wú)關(guān),看目錄下的文件.

                那么有人對(duì)此有什么想法嗎?

                我最好的辦法是用 123 重命名供應(yīng)商腳本,以給它們正確的順序,但我是不知道我喜不喜歡這個(gè).

                隨著我了解的更多,我發(fā)現(xiàn) Browserify 是一個(gè)很好的解決方案,一開(kāi)始可能會(huì)很痛苦,但它很棒.

                解決方案

                我最近在構(gòu)建我的 AngularJS 應(yīng)用程序時(shí)遇到了與 Grunt 類(lèi)似的問(wèn)題.這是我發(fā)布的一個(gè)問(wèn)題.p>

                我最終做的是在 grunt 配置中按順序顯式列出文件.配置文件將如下所示:

                <代碼>['/path/to/app.js','/path/to/mymodule/mymodule.js','/path/to/mymodule/mymodule/*.js']

                Grunt 能夠找出哪些文件是重復(fù)的并且不包含它們.同樣的技術(shù)也適用于 Gulp.

                Say, for example, you are building a project on Backbone or whatever and you need to load scripts in a certain order, e.g. underscore.js needs to be loaded before backbone.js.

                How do I get it to concat the scripts so that they’re in order?

                // JS concat, strip debugging and minify
                gulp.task('scripts', function() {
                    gulp.src(['./source/js/*.js', './source/js/**/*.js'])
                    .pipe(concat('script.js'))
                    .pipe(stripDebug())
                    .pipe(uglify())
                    .pipe(gulp.dest('./build/js/'));
                });
                

                I have the right order of scripts in my source/index.html, but since files are organized by alphabetic order, gulp will concat underscore.js after backbone.js, and the order of the scripts in my source/index.html does not matter, it looks at the files in the directory.

                So does anyone have an idea on this?

                Best idea I have is to rename the vendor scripts with 1, 2, 3 to give them the proper order, but I am not sure if I like this.

                As I learned more I found Browserify is a great solution, it can be a pain at first but it’s great.

                解決方案

                I had a similar problem recently with Grunt when building my AngularJS app. Here's a question I posted.

                What I ended up doing is to explicitly list the files in order in the grunt config. The config file will then look like this:

                [
                  '/path/to/app.js',
                  '/path/to/mymodule/mymodule.js',
                  '/path/to/mymodule/mymodule/*.js'
                ]
                

                Grunt is able to figure out which files are duplicates and not include them. The same technique will work with Gulp as well.

                這篇關(guān)于使用 Gulp 按順序連接腳本的文章就介紹到這了,希望我們推薦的答案對(duì)大家有所幫助,也希望大家多多支持html5模板網(wǎng)!

                【網(wǎng)站聲明】本站部分內(nèi)容來(lái)源于互聯(lián)網(wǎng),旨在幫助大家更快的解決問(wèn)題,如果有圖片或者內(nèi)容侵犯了您的權(quán)益,請(qǐng)聯(lián)系我們刪除處理,感謝您的支持!

                相關(guān)文檔推薦

                Browserify, Babel 6, Gulp - Unexpected token on spread operator(Browserify,Babel 6,Gulp - 傳播運(yùn)算符上的意外令牌)
                Is it possible to pass a flag to Gulp to have it run tasks in different ways?(是否可以將標(biāo)志傳遞給 Gulp 以使其以不同的方式運(yùn)行任務(wù)?)
                Why do we need to install gulp globally and locally?(為什么我們需要在全局和本地安裝 gulp?)
                How to run Gulp tasks sequentially one after the other(如何一個(gè)接一個(gè)地依次運(yùn)行 Gulp 任務(wù))
                Stylesheet not loaded because of MIME-type(由于 MIME 類(lèi)型而未加載樣式表)
                Visual Studio 2015 crashes when opening Javascript files(打開(kāi) Javascript 文件時(shí) Visual Studio 2015 崩潰)

                  <small id='33yQ5'></small><noframes id='33yQ5'>

                    <bdo id='33yQ5'></bdo><ul id='33yQ5'></ul>
                      <legend id='33yQ5'><style id='33yQ5'><dir id='33yQ5'><q id='33yQ5'></q></dir></style></legend>
                      <tfoot id='33yQ5'></tfoot>
                        <tbody id='33yQ5'></tbody>

                        <i id='33yQ5'><tr id='33yQ5'><dt id='33yQ5'><q id='33yQ5'><span id='33yQ5'><b id='33yQ5'><form id='33yQ5'><ins id='33yQ5'></ins><ul id='33yQ5'></ul><sub id='33yQ5'></sub></form><legend id='33yQ5'></legend><bdo id='33yQ5'><pre id='33yQ5'><center id='33yQ5'></center></pre></bdo></b><th id='33yQ5'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='33yQ5'><tfoot id='33yQ5'></tfoot><dl id='33yQ5'><fieldset id='33yQ5'></fieldset></dl></div>

                        • 主站蜘蛛池模板: www.欧美.com | 91原创视频在线观看 | 99免费在线视频 | 欧美嘿咻| 欧美激情区| 男女视频在线免费观看 | 日韩a视频| 亚洲人成在线观看 | 一级毛片免费 | 国内精品免费久久久久软件老师 | 日韩欧美一区二区三区 | 极品粉嫩国产48尤物在线播放 | 国产乱码精品一区二区三区av | 国产极品车模吞精高潮呻吟 | 亚洲成人在线视频播放 | 久久久久久久久久久高潮一区二区 | 亚洲一区视频在线 | 在线国产中文字幕 | 人人爱干| 小川阿佐美pgd-606在线 | av免费网址| 天天操天天射天天 | 巨大荫蒂视频欧美另类大 | 成人免费大片黄在线播放 | 国产精品国产三级国产aⅴ无密码 | 91观看| 日本免费在线 | 福利视频一区二区三区 | 中文字幕一区二区三区乱码图片 | 亚洲国产aⅴ成人精品无吗 亚洲精品久久久一区二区三区 | 精品一区二区免费视频 | 欧美黄页 | 欧美成人一区二区 | av片在线观看 | av日韩精品 | 色精品| 在线免费黄色 | 日日操夜夜操天天操 | 免费观看一级毛片 | 天天看天天操 | 天堂综合网久久 |