Browse Source

use version from package.json for plugin

Alexander Rose 5 years ago
parent
commit
0e34d976c0
2 changed files with 8 additions and 4 deletions
  1. 6 3
      src/mol-plugin/version.ts
  2. 2 1
      webpack.config.common.js

+ 6 - 3
src/mol-plugin/version.ts

@@ -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);

+ 2 - 1
webpack.config.common.js

@@ -36,7 +36,8 @@ const sharedConfig = {
             ],
         }),
         new webpack.DefinePlugin({
-            __PLUGIN_VERSION_TIMESTAMP__: webpack.DefinePlugin.runtimeValue(() => `${new Date().valueOf()}`, true),
+            __VERSION__: JSON.stringify(require('./package.json').version),
+            __VERSION_TIMESTAMP__: webpack.DefinePlugin.runtimeValue(() => `${new Date().valueOf()}`, true),
             'process.env.DEBUG': JSON.stringify(process.env.DEBUG)
         }),
         new MiniCssExtractPlugin({ filename: 'app.css' })