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

    <legend id='Fn8Lb'><style id='Fn8Lb'><dir id='Fn8Lb'><q id='Fn8Lb'></q></dir></style></legend>

    <tfoot id='Fn8Lb'></tfoot>
  1. <small id='Fn8Lb'></small><noframes id='Fn8Lb'>

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

      如何告訴 Gulp 跳過(guò)或忽略 gulp.src([...]) 中的某些文

      How to tell Gulp to skip or ignore some files in gulp.src([...])?(如何告訴 Gulp 跳過(guò)或忽略 gulp.src([...]) 中的某些文件?)
        <tbody id='MK91C'></tbody>
      • <bdo id='MK91C'></bdo><ul id='MK91C'></ul>

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

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

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

                本文介紹了如何告訴 Gulp 跳過(guò)或忽略 gulp.src([...]) 中的某些文件?的處理方法,對(duì)大家解決問(wèn)題具有一定的參考價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)吧!

                問(wèn)題描述

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

                如何讓 Gulp 跳過(guò)或忽略 gulp.src([...]) 中的某些文件?例如,我不想在我的 css/文件夾中壓縮和合并這個(gè)文件 - 'css/ignnore.css'?

                How can I tell Gulp to skip or ignore some files in gulp.src([...])? For instance, I don't want to compress and concat this file in my css/ folder - 'css/ignnore.css'?

                var autoprefix = require('gulp-autoprefixer'),
                    concat = require('gulp-concat'),
                    minifyCss = require('gulp-minify-css');
                
                gulp.task('styles', function() {
                  gulp.src([
                      'css/ignnore.css', // ignore this file
                      'css/*.css'
                    ])
                    .pipe(concat('styles.css'))
                    .pipe(autoprefix('last 2 versions'))
                    .pipe(minifyCss())
                    .pipe(gulp.dest('local/view/style/base/css/dist/'));
                });
                

                推薦答案

                添加一個(gè):

                gulp.task('styles', function() {
                  gulp.src([
                      '!css/ignnore.css', // <== !
                      'css/*.css'
                    ])
                    .pipe(concat('styles.css'))
                    .pipe(autoprefix('last 2 versions'))
                    .pipe(minifyCss())
                    .pipe(gulp.dest('local/view/style/base/css/dist/'));
                });
                

                這篇關(guān)于如何告訴 Gulp 跳過(guò)或忽略 gulp.src([...]) 中的某些文件?的文章就介紹到這了,希望我們推薦的答案對(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 類型而未加載樣式表)
                CSS3 Transition ( Vendor Prefixes) crashes Safari immediately(CSS3 過(guò)渡(供應(yīng)商前綴)立即使 Safari 崩潰)

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

                    • <small id='LM28Q'></small><noframes id='LM28Q'>

                      • <legend id='LM28Q'><style id='LM28Q'><dir id='LM28Q'><q id='LM28Q'></q></dir></style></legend>
                          <tbody id='LM28Q'></tbody>

                        1. 主站蜘蛛池模板: 黄色大片在线播放 | 一级片免费观看 | 在线播放av网站 | 黄色网在线 | 亚洲精品久久久久 | 毛片在线观看网站 | 久久精品国产77777蜜臀 | av网在线观看 | 日本成人精品 | 欧美日韩国产在线播放 | 精品成人av | 日韩色综合 | 亚洲成肉网 | 国内精品久久久久久久久 | 日韩天堂网 | aaa级片| 久久成人精品 | 日韩亚洲欧美在线 | 亚洲国产精品久久 | 玖玖在线观看 | 黄色三级小说 | 国产精品一区在线 | 亚洲第一免费视频 | 中文字幕+乱码+中文乱码91 | 国产福利91| 日韩av一级片 | 91在线视频观看 | 91亚洲一区 | 国产一级片在线 | 日韩国产一区二区 | 日本精品中文字幕 | 不卡在线视频 | 能看的av| 国产一区二区视频在线观看 | 艳妇臀荡乳欲伦交换h漫 | 成人精品免费视频 | 一区二区三区四区在线视频 | 午夜久久久 | 亚洲精品在线免费 | 日韩一级片在线观看 | 国产超碰人人模人人爽人人添 |