我的项目使用SystemJS(我使用的是这样的模板)。
我需要将最终项目构建到生产环境中。我读到我可以使用systemjs-builder。我阅读了官方网页:https://github.com/systemjs/builder。
对不起,我对Angular 2这么新!我不明白如何开始。 例如,这部分:
基本使用
确保单独安装转换器(npm install babel-core)。
var path = require("path");
var Builder = require('systemjs-builder');
// optional constructor options
// sets the baseURL and loads the configuration file
var builder = new Builder('path/to/baseURL', 'path/to/system/config-file.js');
builder
.bundle('local/module.js', 'outfile.js')
.then(function() {
console.log('Build complete');
})
.catch(function(err) {
console.log('Build error');
console.log(err);
});
我应该在这做什么?我必须安装这个名为babel的软件包吗?在此之后?我需要用该代码创建一个文件?哪里?这个文件必须有什么名字?我怎么能执行?
感谢您的帮助。请耐心等待新的角色开发人员!