代码拉取完成,页面将自动刷新
module.exports = function (grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
projectFiles: ['src/litegraph.js',
'src/nodes/base.js',
'src/nodes/events.js',
'src/nodes/interface.js',
'src/nodes/input.js',
'src/nodes/math.js',
'src/nodes/logic.js',
'src/nodes/image.js',
'src/nodes/gltextures.js',
'src/nodes/glfx.js',
'src/nodes/midi.js',
'src/nodes/audio.js',
'src/nodes/network.js'
],
concat: {
build: {
src: '<%= projectFiles %>',
dest: 'build/litegraph.js'
}
},
closureCompiler: {
options: {
compilerFile: 'node_modules/google-closure-compiler/compiler.jar',
compilerOpts: {
formatting: 'pretty_print',
warning_level: 'default'
},
d32: false, // will use 'java -client -d32 -jar compiler.jar'
TieredCompilation: false// will use 'java -server -XX:+TieredCompilation -jar compiler.jar',
// ,output_wrapper: '"var LiteGraph = (function(){%output% return LiteGraph;}).call(this);"' //* Make container for all
},
targetName: {
src: '<%= projectFiles %>',
dest: 'build/litegraph.min.js'
}
}
})
grunt.loadNpmTasks('grunt-contrib-concat')
grunt.loadNpmTasks('grunt-closure-tools')
grunt.registerTask('build', ['concat:build', 'closureCompiler'])
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。