ImageGrid/Viewer/version.js
Alex A. Naanou 5f47d6da7b restructured the repo moving the legacy out of the way...
Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
2020-08-28 17:32:02 +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 })