version.ts 506 B

123456789101112
  1. /**
  2. * Copyright (c) 2018-2019 mol* contributors, licensed under MIT, See LICENSE file for more info.
  3. *
  4. * @author David Sehnal <david.sehnal@gmail.com>
  5. * @author Alexander Rose <alexander.rose@weirdbyte.de>
  6. */
  7. export const PLUGIN_VERSION = '0.5.0';
  8. /** unix time stamp, to be filled in at bundle build time */
  9. declare const __PLUGIN_VERSION_TIMESTAMP__: number
  10. export const PLUGIN_VERSION_TIMESTAMP = __PLUGIN_VERSION_TIMESTAMP__;
  11. export const PLUGIN_VERSION_DATE = new Date(PLUGIN_VERSION_TIMESTAMP);