发布一个使用es6写的npm包,经过编译后的

2018-09-06  本文已影响0人  Wang_Yong

发现的问题,直接写es6d代码,在不经过babel编译发布后,会产生问题
解决办法:

 "scripts": {
    "compile": "babel -d lib/ src/",
    "prepublish": "npm run compile",
    "server": "node app.babel.js",
    "test": "echo \"Error: no test specified\" && exit 1"
  },
"devDependencies": {
    "babel-cli": "^6.26.0",
    "babel-plugin-transform-runtime": "^6.23.0",
    "babel-preset-es2015": "^6.24.1",
    "babel-preset-stage-2": "^6.24.1"
  }
上一篇下一篇

猜你喜欢

热点阅读