0
你好我正在測試systemjs-builder,自述文件有一個很好的入門部分,但我在哪裏放置了構建器代碼?Systemjs構建器,基本用法/配置
https://github.com/systemjs/builder
,我指的是下面的代碼,我不知道在哪裏把這個(這是builder.config?):
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);
});
有一個演示構建在那裏,我可以看看?
您可以將它放在獨立的構建器腳本中,例如放在名爲build.js的文件中,然後嘗試與節點一起運行它,如'node build.js'。然後,您可以將它添加到package.json中的npm腳本中,或者將它添加到您的構建過程中,如果您正在使用gulp或類似的東西。 – artem