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

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

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

      <small id='7Lh7e'></small><noframes id='7Lh7e'>

      1. <tfoot id='7Lh7e'></tfoot>
          <bdo id='7Lh7e'></bdo><ul id='7Lh7e'></ul>

        Gulp-sourcemaps 沒有創(chuàng)建源映射文件?

        Gulp-sourcemaps not creating a sourcemap file?(Gulp-sourcemaps 沒有創(chuàng)建源映射文件?)

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

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

                1. 本文介紹了Gulp-sourcemaps 沒有創(chuàng)建源映射文件?的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                  問題描述

                  限時送ChatGPT賬號..

                  我正在嘗試讓 Gulp 源映射來寫入文件,但我無法在任何地方看到這些文件.如果在工作樹中創(chuàng)建了任何新文件,我會在 git status 中看到它們,但沒有找到任何新文件.

                  I'm trying to get Gulp sourcemaps to write files, but I can't see these files anywhere. If any new files were created in the working tree, I would see them in git status, but nothing no new files to be found.

                  下面是我的 gulpfile.js

                  Below is my gulpfile.js

                  var gulp = require('gulp'),
                      sourcemaps = require('gulp-sourcemaps'),
                      minify = require('gulp-minify'),
                      concat = require('gulp-concat'),
                      uglify = require('gulp-uglify');
                  
                  gulp.task('js', function() {
                  
                      return gulp.src('src/js/**/*.js')
                          .pipe(sourcemaps.init())
                              .pipe(concat('all.js'))
                              .pipe(uglify())
                          .pipe(sourcemaps.write())
                          .pipe(gulp.dest('./public/js'));
                  });
                  

                  這是正確的用法嗎?從我在其他地方看到的例子來看,這應該沒問題.我還看到這些插件與源地圖兼容:https://github.com/floridoo/gulp-sourcemaps/wiki/Plugins-with-gulp-sourcemaps-support

                  Is this correct usage? From the examples I've seen elsewhere, this should be OK. I also see that these plugins are compatable with sourcemaps: https://github.com/floridoo/gulp-sourcemaps/wiki/Plugins-with-gulp-sourcemaps-support

                  推薦答案

                  使用 sourcemaps.write() 方法,將源映射行附加到 all.js文件.如果要編寫外部源映射文件,則需要將路徑傳遞給 sourcemaps.write() 方法:

                  Using the sourcemaps.write() method the way you do appends a source maps line to the all.js file. If you want to write external source map files, you'll need to pass the path to the sourcemaps.write() method:

                  sourcemaps.write('../maps')
                  

                  https://www.npmjs.com/package/gulp-sourcemaps

                  這篇關于Gulp-sourcemaps 沒有創(chuàng)建源映射文件?的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持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 類型而未加載樣式表)
                  Visual Studio 2015 crashes when opening Javascript files(打開 Javascript 文件時 Visual Studio 2015 崩潰)

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

                      • <bdo id='ppsD9'></bdo><ul id='ppsD9'></ul>
                        <tfoot id='ppsD9'></tfoot>

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

                          • <legend id='ppsD9'><style id='ppsD9'><dir id='ppsD9'><q id='ppsD9'></q></dir></style></legend>
                              <tbody id='ppsD9'></tbody>
                            主站蜘蛛池模板: 日本在线播放一区二区 | 91n成人| 黄网站涩免费蜜桃网站 | 欧美一区二区三区在线视频 | 亚洲精品欧美 | 福利视频网 | 中国三级黄色录像 | 欧美一级视频免费看 | 韩国毛片视频 | 欧美日韩综合一区 | 免费xxxx大片国产在线 | 91爱啪啪| 久久久久久久av麻豆果冻 | 国产乱码精品一品二品 | 国产精品高 | 国产乱xxav| 日日爱夜夜操 | 亚洲精品久久久蜜桃网站 | 美女天堂| 日韩精品一区二区三区四区 | 91九色porny首页最多播放 | 亚洲免费久久久 | 久久久精品视频一区二区三区 | 天天躁日日躁性色aⅴ电影 免费在线观看成年人视频 国产欧美精品 | 一级h片| 亚洲网站在线观看 | 欧美日韩成人在线观看 | 天堂网中文字幕在线观看 | av网站观看 | 国产yw851.c免费观看网站 | 欧美在线亚洲 | 小视频你懂得 | 精品国产91久久久久久 | 精品国产一区二区三区性色 | 中文字幕一级 | 精品国产一区二区三区四区在线 | 91久久精品一区二区二区 | 成人精品一区二区三区中文字幕 | 天天躁日日躁性色aⅴ电影 免费在线观看成年人视频 国产欧美精品 | 91精品国产91久久久久久密臀 | 日韩欧美一区二区三区 |