|
@@ -5,8 +5,11 @@
|
|
|
* @author Alexander Rose <alexander.rose@weirdbyte.de>
|
|
|
*/
|
|
|
|
|
|
-export const PLUGIN_VERSION = '0.6.0';
|
|
|
+/** version from package.json, to be filled in at bundle build time */
|
|
|
+declare const __VERSION__: string
|
|
|
+export const PLUGIN_VERSION = __VERSION__;
|
|
|
+
|
|
|
/** unix time stamp, to be filled in at bundle build time */
|
|
|
-declare const __PLUGIN_VERSION_TIMESTAMP__: number
|
|
|
-export const PLUGIN_VERSION_TIMESTAMP = __PLUGIN_VERSION_TIMESTAMP__;
|
|
|
+declare const __VERSION_TIMESTAMP__: number
|
|
|
+export const PLUGIN_VERSION_TIMESTAMP = __VERSION_TIMESTAMP__;
|
|
|
export const PLUGIN_VERSION_DATE = new Date(PLUGIN_VERSION_TIMESTAMP);
|