Skip to content

Commit

Permalink
fix(webpack): use scoped name for webpack library
Browse files Browse the repository at this point in the history
  • Loading branch information
mhassan1 authored and Romakita committed Oct 21, 2023
1 parent 6c6bcda commit ee9ffe8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/webpack/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ exports.create = ({root, name, entry, externals = {}, resolve = {}}) => {
output: {
path: `${root}/lib/browser/`,
filename: `${name}.umd.min.js`,
library: name,
library: `@tsed/${name}`,
libraryTarget: "umd"
},
resolve: {
Expand Down

0 comments on commit ee9ffe8

Please sign in to comment.