From 0d7f7cb86d1374b1d88640be7c48a0221374b182 Mon Sep 17 00:00:00 2001 From: David Newell Date: Mon, 22 Aug 2022 14:39:31 +0200 Subject: [PATCH] Leaving the webpack entry as the lib index for the global export --- webpack.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webpack.config.js b/webpack.config.js index ec1d1f2f..738cc324 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -2,7 +2,7 @@ const webpack = require('webpack'); const path = require('path'); const config = { - entry: './index.ts', + entry: './lib/index.js', output: { path: path.resolve(__dirname, 'build'), filename: 'graphlib.js',