ImageGrid/ui (gen4)/version.js
Alex A. Naanou 031168bb2f some cleanup and tweaking...
Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
2018-01-14 22:23:51 +03:00

26 lines
820 B
JavaScript

/**********************************************************************
*
*
*
**********************************************************************/
((typeof define)[0]=='u'?function(f){module.exports=f(require)}:define)
(function(require){ var module={} // make module AMD/node compatible...
/*********************************************************************/
// XXX need to figure out a way to get the version from package.json and
// do it in:
// - bare nodejs
// > node version.js
// - browser + requirejs + file://
// - browser + requirejs + http*
var VERSION = '4.0.0a'
console.log(VERSION)
module.version = VERSION
/**********************************************************************
* vim:set ts=4 sw=4 : */ return module })