久久久久久久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 跳過或忽略 gulp.src([...]) 中的某些文

      How to tell Gulp to skip or ignore some files in gulp.src([...])?(如何告訴 Gulp 跳過或忽略 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 跳過或忽略 gulp.src([...]) 中的某些文件?的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                問題描述

                限時送ChatGPT賬號..

                如何讓 Gulp 跳過或忽略 gulp.src([...]) 中的某些文件?例如,我不想在我的 css/文件夾中壓縮和合并這個文件 - '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/'));
                });
                

                推薦答案

                添加一個:

                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/'));
                });
                

                這篇關于如何告訴 Gulp 跳過或忽略 gulp.src([...]) 中的某些文件?的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網(wǎng)!

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

                相關文檔推薦

                Browserify, Babel 6, Gulp - Unexpected token on spread operator(Browserify,Babel 6,Gulp - 傳播運算符上的意外令牌)
                Is it possible to pass a flag to Gulp to have it run tasks in different ways?(是否可以將標志傳遞給 Gulp 以使其以不同的方式運行任務?)
                Why do we need to install gulp globally and locally?(為什么我們需要在全局和本地安裝 gulp?)
                How to run Gulp tasks sequentially one after the other(如何一個接一個地依次運行 Gulp 任務)
                Stylesheet not loaded because of MIME-type(由于 MIME 類型而未加載樣式表)
                CSS3 Transition ( Vendor Prefixes) crashes Safari immediately(CSS3 過渡(供應商前綴)立即使 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十九禁 | 91在线导航 | 亚洲视频国产视频 | 久久久久国产 | 久久99久久99精品免视看婷婷 | 国产精品久久久久久福利一牛影视 | 精品区| 国产精品久久久久久久久久东京 | h视频免费在线观看 | 天堂色网 | 免费黄色在线观看 | 自拍视频在线观看 | 国产一区二区三区在线免费观看 | 国产一区2区 | 日韩一二区 | 亚洲一区在线播放 | 天天草天天| 日韩视频中文字幕 | 国产在线一区二区 | 国产成人精品一区二区 | 国产中文一区二区三区 | 亚洲网在线 | 久久91精品国产 | 日本三级播放 | 欧美影院 | 国产福利视频在线观看 | 国产a视频 | 日本不卡视频 | 精品日韩一区二区 | 日韩一区二区三区视频 | 日本一区二区高清视频 | 亚州精品天堂中文字幕 | 国产午夜精品一区二区三区嫩草 | 国产一级视频在线观看 | 日韩中文字幕免费 | 黄色网毛片 | 91国内视频在线 | 一区二区三区视频免费看 | 一区二区视频在线观看 |