久久久久久久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>
                          • 主站蜘蛛池模板: 日韩久久久久 | 久久精品中文字幕 | 国产精品久久 | 欧美亚洲国产一区二区三区 | 精品一二区 | 国产成人综合在线 | 精品久久精品 | 99精品国产一区二区三区 | 黄色毛片大全 | 日韩一区二区成人 | 偷拍自拍网 | 亚洲成人国产综合 | 精品毛片在线观看 | 久久精品国产一区 | av在线免费观看网站 | 欧美乱码精品一区二区三区 | 久久成人一区 | 99久久免费精品国产免费高清 | 九色91视频 | 91在线资源| 精品成人佐山爱一区二区 | 国产精品欧美一区二区三区不卡 | 欧美成人a∨高清免费观看 色999日韩 | 日本精品一区 | 日日碰狠狠躁久久躁婷婷 | 国产精品久久久久久久久 | 伊人网在线综合 | 欧美日韩精品国产 | 国产一区二区三区在线 | 国产成人精品午夜 | 在线视频亚洲 | 日本不卡一区二区三区 | 中文字幕国产 | 久久久久久久久久久久久91 | 亚洲国产成人av好男人在线观看 | 91观看| 九九热免费视频在线观看 | 国产欧美日韩精品在线观看 | 亚洲精品一区二区三区蜜桃久 | 日韩在线一区二区三区 | 国产 日韩 欧美 中文 在线播放 |