StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics
https://doi.org/10.1109/TVCG.2020.3030352
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
577 B
16 lines
577 B
var fs = require('fs')
|
|
var path = require('path')
|
|
var minify = require('minify')
|
|
|
|
minify.optimize('lib/uint32.js', { returnName: true, callback: save('build/uint32.min.js') })
|
|
fs.writeFileSync( 'build/uint32.js', fs.readFileSync('lib/uint32.js') )
|
|
|
|
minify.optimize('lib/uint64.js', { returnName: true, callback: save('build/uint64.min.js') })
|
|
fs.writeFileSync( 'build/uint64.js', fs.readFileSync('lib/uint64.js') )
|
|
|
|
function save (filename) {
|
|
return function (p) {
|
|
console.log('Renaming ' + path.basename(p.name) + ' to ' + filename)
|
|
fs.renameSync( p.name, filename )
|
|
}
|
|
} |