aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteve Klebanoff <steve.klebanoff@gmail.com>2018-11-17 02:10:43 +0800
committerSteve Klebanoff <steve.klebanoff@gmail.com>2018-11-17 02:10:43 +0800
commit45a1899eade34e90801e3fbcba9a6789e43684f4 (patch)
tree68ba9c00af2c1bcdcef0a06e8f3eb4f98b34b620
parent3add465edb779587e2b4bb136d8668b00b58a8fb (diff)
downloaddexon-sol-tools-45a1899eade34e90801e3fbcba9a6789e43684f4.tar
dexon-sol-tools-45a1899eade34e90801e3fbcba9a6789e43684f4.tar.gz
dexon-sol-tools-45a1899eade34e90801e3fbcba9a6789e43684f4.tar.bz2
dexon-sol-tools-45a1899eade34e90801e3fbcba9a6789e43684f4.tar.lz
dexon-sol-tools-45a1899eade34e90801e3fbcba9a6789e43684f4.tar.xz
dexon-sol-tools-45a1899eade34e90801e3fbcba9a6789e43684f4.tar.zst
dexon-sol-tools-45a1899eade34e90801e3fbcba9a6789e43684f4.zip
Add access to environment variables
-rw-r--r--packages/instant/webpack.config.js18
1 files changed, 18 insertions, 0 deletions
diff --git a/packages/instant/webpack.config.js b/packages/instant/webpack.config.js
index 78a33ce90..129092d70 100644
--- a/packages/instant/webpack.config.js
+++ b/packages/instant/webpack.config.js
@@ -1,6 +1,15 @@
+const childProcess = require('child_process');
const path = require('path');
+const webpack = require('webpack');
+
// The common js bundle (not this one) is built using tsc.
// The umd bundle (this one) has a different entrypoint.
+
+const GIT_SHA = childProcess
+ .execSync('git rev-parse HEAD')
+ .toString()
+ .trim();
+
module.exports = {
entry: './src/index.umd.ts',
output: {
@@ -9,6 +18,15 @@ module.exports = {
library: 'zeroExInstant',
libraryTarget: 'umd',
},
+ plugins: [
+ new webpack.DefinePlugin({
+ 'process.env': {
+ NODE_ENV: JSON.stringify(process.env.NODE_ENV),
+ GIT_SHA: JSON.stringify(GIT_SHA),
+ ENABLE_HEAP: process.env.ENABLE_HEAP,
+ },
+ }),
+ ],
devtool: 'source-map',
resolve: {
extensions: ['.js', '.json', '.ts', '.tsx'],