我看到有可能使用onBuildWrite获取js文件的内容,但我需要一种方法将值注入我们的根html页面,这可能吗?我们想把我们的文件换成css版本。
答案 0 :(得分:1)
可以使用node.js:
var fs = require('fs');
// read html file
var fileContents = fs.readFileSync('index.html', 'utf8');
// replace rel attribute for less file with rel for css
fileContents = fileContents.replace(/stylesheet\/less/gi, 'stylesheet');
// replace file name
fileContents = fileContents.replace(/css\/application.less/gi, 'css/application.css');
// remove less runtime compiler (if needed)
fileContents = fileContents.replace(/<script.*?\bless\b[^"']*?\.js.*?<\/script>/g, '');
// write file back
fs.writeFileSync('index.html', fileContents, 'utf8');
只需将其添加为构建脚本的一部分,同时调用r.js。