phaser/v3/create-checksum.js
Richard Davey 970dea20f5 Added checksum ability to build process.
Fixed RequestAnimationFrame.
2016-11-25 01:37:14 +00:00

27 lines
508 B
JavaScript

var fs = require('fs-extra');
var uuid = require('node-uuid');
var v = uuid.v1();
var output = [
'var CHECKSUM = {',
'build: \'' + v + '\'',
'};',
'module.exports = CHECKSUM;'
];
// Should output a json file, but webpack2 json-loader is broken
// at the moment, so we're outputting a js file instead
fs.writeFile('./src/checksum.js', output.join('\n'), function (error) {
if (error)
{
throw error;
}
else
{
console.log('Building #' + v);
}
});