From 9008f70abde8da8b9c1e3871dd05a44817638065 Mon Sep 17 00:00:00 2001 From: andres-rubio-go <132520982+andres-rubio-go@users.noreply.github.com> Date: Wed, 14 Feb 2024 15:57:15 -0600 Subject: [PATCH] Adds CI implementation (#24) --- .gitignore | 1 + webpack.config.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 52d8dbc..3e62196 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ node_modules/ .DS_STORE +/dist diff --git a/webpack.config.js b/webpack.config.js index 5941a77..ee4905b 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -8,7 +8,7 @@ var webpackConfig = { collapsible_tree: './src/collapsible_tree/collapsible_tree.ts', }, output: { - filename: 'collapsible_tree.js', + filename: 'bundle.js', path: path.join(path.resolve(__dirname), '/dist'), library: '[name]', libraryTarget: 'umd',