Aurelia Error: Potentially unhandled rejection [4] Unexpected token @
Aurelia Error: Potentially unhandled rejection [4] Unexpected token @
所以,Aurelia 的文档最近更新了,现在很多东西都被装饰器取代了,比如 @binding
。当我尝试使用它们时,出现错误:
Potentially unhandled rejection [4] Unexpected token @ (WARNING:
non-Error used)
我已经 运行 所有形式的 npm 更新,但我仍然遇到错误。想法?
这里的问题是,即使我保留了 运行 npm update
,我的配置仍在指示 npm 获取 4.0.0 版本的 babel。 Decorators were included in the babel 5.0.0 release。因此,我需要对 package.json
文件进行以下编辑:
package.json
{
...
"devDependencies": {
"gulp-babel": "^5.0.0",
}
}
然后,我 运行 npm update gulp-babel
,npm 获取了正确的包,一切正常。
所以,Aurelia 的文档最近更新了,现在很多东西都被装饰器取代了,比如 @binding
。当我尝试使用它们时,出现错误:
Potentially unhandled rejection [4] Unexpected token @ (WARNING: non-Error used)
我已经 运行 所有形式的 npm 更新,但我仍然遇到错误。想法?
这里的问题是,即使我保留了 运行 npm update
,我的配置仍在指示 npm 获取 4.0.0 版本的 babel。 Decorators were included in the babel 5.0.0 release。因此,我需要对 package.json
文件进行以下编辑:
package.json
{
...
"devDependencies": {
"gulp-babel": "^5.0.0",
}
}
然后,我 运行 npm update gulp-babel
,npm 获取了正确的包,一切正常。