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

    <bdo id='pOkMw'></bdo><ul id='pOkMw'></ul>
  • <small id='pOkMw'></small><noframes id='pOkMw'>

  • <legend id='pOkMw'><style id='pOkMw'><dir id='pOkMw'><q id='pOkMw'></q></dir></style></legend>

  • <tfoot id='pOkMw'></tfoot>

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

        events.js:160 拋出 er;//未處理的“錯誤"事件

        events.js:160 throw er; // Unhandled #39;error#39; event(events.js:160 拋出 er;//未處理的“錯誤事件)
      1. <tfoot id='B0GJm'></tfoot>
        <i id='B0GJm'><tr id='B0GJm'><dt id='B0GJm'><q id='B0GJm'><span id='B0GJm'><b id='B0GJm'><form id='B0GJm'><ins id='B0GJm'></ins><ul id='B0GJm'></ul><sub id='B0GJm'></sub></form><legend id='B0GJm'></legend><bdo id='B0GJm'><pre id='B0GJm'><center id='B0GJm'></center></pre></bdo></b><th id='B0GJm'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='B0GJm'><tfoot id='B0GJm'></tfoot><dl id='B0GJm'><fieldset id='B0GJm'></fieldset></dl></div>
                  <tbody id='B0GJm'></tbody>

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

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

                • <legend id='B0GJm'><style id='B0GJm'><dir id='B0GJm'><q id='B0GJm'></q></dir></style></legend>
                  本文介紹了events.js:160 拋出 er;//未處理的“錯誤"事件的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                  問題描述

                  限時送ChatGPT賬號..

                  我從事的項目是用 gulp 構建的.

                  The project I worked on was built with gulp.

                  最近我將節點版本更新為 v6.3.1.然后出了點問題.

                  Recently I updated the node version to v6.3.1. Then something came wrong.

                  名為html"的任務引發錯誤.這是它的錯誤代碼部分.

                  A task named 'html' throws an error. Here is the part of error code of it.

                  bogon:toClient work$ gulp html
                  (node:2519) fs: re-evaluating native module sources is not supported. If you are using the graceful-fs module, please update it to a more recent version.
                  
                  [10:26:10] Using gulpfile ~/Project/TIME_Cancer_Treatment_Centers_of_America(CTCA)/toClient/gulpfile.js
                  [10:26:10] Starting 'html'...
                  (node:2519) fs: re-evaluating native module sources is not supported. If you are using the graceful-fs module, please update it to a more recent version.
                  
                  events.js:160
                        throw er; // Unhandled 'error' event
                        ^
                  Error: CSS parse error scripts/vendor.js: Unexpected input
                      1 |!function(t,e){"object"==typeof module&&"object"==typeof module.exports?module.exports=t.document?e(t,!0):function(t){if(!t.document)throw new Error("jQuery requires a window with a document");return e(t)}:e(t)}("undefined"!=typeof window?window:this,function(t,e){function i(t){var e="length"in t&&t.length,i=J.type(t);return"function"!==i&&!J.isWindow(t)&&(!(1!==t.nodeType||!e)||("array"===i||0===e||
                  

                  以及任務'html'的代碼:

                  And the code of task 'html':

                  var $ = require('gulp-load-plugins')();
                  
                  gulp.task('html', function() {
                    var assets = $.useref.assets({searchPath: ['.tmp']});
                  
                    return gulp.src('app/*.html')
                      .pipe(assets)
                      .pipe($.if('*.js', $.uglify()))
                      .pipe($.if('*.css', $.csso()))
                      .pipe(assets.restore())
                      .pipe($.useref())
                      .pipe($.if('*.html', $.minifyHtml({conditionals: true, loose: true})))
                      .pipe(gulp.dest('dist'));
                  });
                  

                  我搜索了很多,但沒有找到適合我的正確答案.

                  I googled a lot but I haven't found a proper answer suitable for me.

                  推薦答案

                  刪除 node_modules 文件夾,清除 npm 緩存文件并進行全新安裝,即可解決此問題.

                  removing the node_modules folder, clearing npm cached files, and doing a fresh install, resolves this issue.

                  rm -rf node_modules && npm cache clean --force && npm install
                  

                  來源:https://github.com/ember-cli/ember-cli/issues/3087#issuecomment-71327402

                  這篇關于events.js:160 拋出 er;//未處理的“錯誤"事件的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

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

                  相關文檔推薦

                  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 崩潰)

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

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

                    <tfoot id='eXJ7w'></tfoot>
                        <tbody id='eXJ7w'></tbody>
                      <legend id='eXJ7w'><style id='eXJ7w'><dir id='eXJ7w'><q id='eXJ7w'></q></dir></style></legend>

                          <bdo id='eXJ7w'></bdo><ul id='eXJ7w'></ul>
                          • 主站蜘蛛池模板: 婷婷五月色综合香五月 | xx视频在线| 午夜精品一区二区三区免费视频 | 自拍视频在线观看 | 一级黄色淫片 | 黄网免费看 | 国产传媒视频在线观看 | 农村真人裸体丰满少妇毛片 | 欧美日韩一区二区在线观看 | 国产精品欧美大片 | 国产羞羞视频在线观看 | 国产乱码一二三区精品 | 一区二区国产在线观看 | 久久久久久免费观看 | av在线视 | 九九色综合 | 99免费在线视频 | 成人午夜 | 成人免费视频观看 | 99国产精品99久久久久久粉嫩 | 国产乱码精品1区2区3区 | 成人在线精品 | 国产成人精品一区二区三区在线 | 欧美第一区 | 五月综合久久 | 国产成人99久久亚洲综合精品 | 毛片久久久 | www国产成人免费观看视频 | 欧美黄在线观看 | 亚洲综合视频 | 国产在线观看免费 | 亚洲精品日日夜夜 | 国产精品视频入口 | 中文字幕日韩一区 | 精品国产一区二区国模嫣然 | 成人网av| 在线看av网址 | www.日本精品| 日日爽 | 99re热精品视频国产免费 | 久久91av|