Skip to content

Commit d7ea482

Browse files
author
Matt Lewis
committed
fix: remove positioning sourcemap from umd build
Closes #66
1 parent 6b1700b commit d7ea482

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@
8888
"sass-loader": "~4.0.1",
8989
"sinon": "~1.17.4",
9090
"sinon-chai": "~2.8.0",
91+
"source-map-loader": "~0.1.5",
9192
"sourcemap-istanbul-instrumenter-loader": "~0.2.0",
9293
"standard-version": "~2.4.0",
9394
"style-loader": "~0.13.0",

webpack.config.umd.ts

+4
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,10 @@ module.exports = {
6666
test: /\.ts$/,
6767
loader: 'tslint-loader?emitErrors=true&failOnHint=true',
6868
exclude: /node_modules/
69+
}, {
70+
enforce: 'pre',
71+
test: /ng\-bootstrap\/util\/positioning/,
72+
loader: 'source-map-loader'
6973
}, {
7074
test: /\.ts$/,
7175
loader: 'awesome-typescript-loader',

0 commit comments

Comments
 (0)