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

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

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

      2. <small id='roxaC'></small><noframes id='roxaC'>

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

        Browserify,Babel 6,Gulp - 傳播運算符上的意外令牌

        Browserify, Babel 6, Gulp - Unexpected token on spread operator(Browserify,Babel 6,Gulp - 傳播運算符上的意外令牌)

            <tbody id='stKYw'></tbody>

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

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

                  <bdo id='stKYw'></bdo><ul id='stKYw'></ul>
                • 本文介紹了Browserify,Babel 6,Gulp - 傳播運算符上的意外令牌的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                  問題描述

                  限時送ChatGPT賬號..

                  我正在嘗試讓我的 Browserify/Babelify/Gulp 在我的項目中工作,但它不會使用擴展運算符.

                  I'm trying to get my Browserify/Babelify/Gulp working in my project, but it won't take the spread operator.

                  我從我的 gulpfile 中得到了這個錯誤:

                  I got this error from my gulpfile:

                  [SyntaxError: /Users/mboutin2/Desktop/Todo-tutorial/src/reducers/grocery-list-reducers.js: Unexpected token (16:8) while parsing file: /Users/mboutin2/Desktop/Todo-tutorial/src/reducers/grocery-list-reducers.js]
                  

                  這是我的 gulpfile.js

                  This is my gulpfile.js

                  var gulp = require('gulp');
                  var source = require('vinyl-source-stream');
                  var browserify = require('browserify');
                  var sourcemaps = require('gulp-sourcemaps');
                  var uglify = require('gulp-uglify');
                  var buffer = require('vinyl-buffer');
                  var babelify = require('babelify');
                  
                  gulp.task('build', function () {
                    return browserify({entries: './src/client/app.js', extensions: ['.js'], debug: true})
                      .transform(babelify, {presets: ['es2015', 'react']})
                      .bundle()
                      .on('error', function (err) {
                        console.error(err);
                        this.emit('end');
                      })
                      .pipe(source('app.min.js'))
                      .pipe(buffer())
                      .pipe(sourcemaps.init({loadMaps: true}))
                      .pipe(uglify())
                      .pipe(sourcemaps.write('./'))
                      .pipe(gulp.dest('./public/js'));
                  });
                  
                  gulp.task('default', ['build']);
                  

                  我嘗試創建一個 .babelrc 文件,但它做同樣的事情.當我刪除傳播運算符時,我的腳本就可以工作了.

                  I tried to create a .babelrc file, but it do the same thing. And my script works when i delete the spread operator.

                  這是出現 Unexpected token 的文件(很簡單).

                  This is the file where the Unexpected token occurs (quite simple).

                  import utils from '../utils/consts';
                  
                  const initialState = {
                    itemList: [
                      {name: 'Apple', type: 'Fruit'},
                      {name: 'Beef', type: 'Meat'}
                    ]
                  };
                  
                  export function groceryList(state = initialState, action = {}) {
                  
                    switch(action.type) {
                  
                      case utils.ACTIONS.ITEM_SUBMIT:
                        return {
                          ...state,
                          itemList: [
                            ...state.itemList,
                            {name: action.name, type: action.itemType}
                          ]
                        };
                  
                      default:
                        return state;
                  
                    }
                  }
                  

                  我不知道這有什么問題,我在 Github 和 Babel 網站上的設置頁面上閱讀了一些問題,但我無法使其正常工作.

                  I don't know what doesn't work in this, i read some issues on Github and the setup page on Babel website, but i can't make it work correctly.

                  誰能告訴我如何正確處理這個問題?謝謝

                  Can anyone show me how to handle this correctly? Thank you

                  推薦答案

                  該語法是未來的實驗性提議語法,它不屬于 es2015react所以你需要啟用它.

                  That syntax is an experimental proposed syntax for the future, it is not part of es2015 or react so you'll need to enable it.

                  npm install --save-dev babel-plugin-transform-object-rest-spread
                  

                  并添加

                  "plugins": ["transform-object-rest-spread"]
                  

                  進入 .babelrc 以及你現有的 presets.

                  into .babelrc alongside your existing presets.

                  或者:

                  npm install --save-dev babel-preset-stage-3
                  

                  并在您的預設中使用 stage-3 來啟用所有 stage-3 實驗功能.

                  and use stage-3 in your presets to enable all stage-3 experimental functionality.

                  這篇關于Browserify,Babel 6,Gulp - 傳播運算符上的意外令牌的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

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

                  相關文檔推薦

                  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 崩潰)
                  Detect FLASH plugin crashes(檢測 FLASH 插件崩潰)

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

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

                    <tfoot id='u1xq8'></tfoot>

                        <bdo id='u1xq8'></bdo><ul id='u1xq8'></ul>
                      • <legend id='u1xq8'><style id='u1xq8'><dir id='u1xq8'><q id='u1xq8'></q></dir></style></legend>
                            <tbody id='u1xq8'></tbody>

                            主站蜘蛛池模板: 国产成人综合一区二区三区 | 一级a性色生活片久久毛片 一级特黄a大片 | 欧美成人免费在线 | 亚洲精品一区二区三区蜜桃久 | 99精品一区二区 | 国产精品毛片一区二区在线看 | 成人欧美一区二区三区黑人孕妇 | 亚洲一区视频 | av网站观看| 午夜日韩精品 | 国产欧美一区二区三区在线看 | 国产精品国产三级国产aⅴ中文 | 中文字幕一区二区三区日韩精品 | 亚洲黄色av | 一级毛片免费视频 | 色吊丝在线 | 啪一啪| 日韩影音 | 免费三级网站 | 日韩av成人在线 | 在线观看中文字幕视频 | 美女爽到呻吟久久久久 | 精品国产一区一区二区三亚瑟 | 黄色免费观看网站 | 精品亚洲一区二区 | 亚洲欧美在线观看 | 日本精品久久 | 欧美国产亚洲一区二区 | 亚洲乱码一区二区三区在线观看 | 激情的网站 | 九九一级片 | 婷婷久久网 | 国产综合久久久久久鬼色 | 国产精品一区二区av | 国产97色| 色av一区| 91网站视频在线观看 | 成人在线一区二区三区 | 97精品超碰一区二区三区 | 亚洲人成人一区二区在线观看 | a级黄色片视频 |