File tree Expand file tree Collapse file tree 4 files changed +7
-45
lines changed Expand file tree Collapse file tree 4 files changed +7
-45
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,9 @@ April 9, 2023
9
9
- As a result, ` getFlattenedFields ` would produce incorrect results for these fields if they were not aliased.
10
10
- Upgraded webpack, migrated from Travis CI to Github Actions
11
11
- Update dependencies to resolve reported security issues
12
+ - Update build process to fix invalid sourcemap mapping (#227 )
13
+ - Removed non-minified version of application which had incorrect path to sourcemaps
14
+ - Ensure webpack generates a sourcemap for the minified code output
12
15
13
16
## 4.7.1
14
17
Original file line number Diff line number Diff line change 10
10
"clean:esm" : " rm -rf ./dist_esm/*" ,
11
11
"clean:cli" : " rm -rf ./dist_cli/*" ,
12
12
"prebuild" : " npm run clean" ,
13
- "build" : " npm-run-all compile bundle:regular bundle: min build:esm build:cli" ,
13
+ "build" : " npm-run-all compile bundle:min build:esm build:cli" ,
14
14
"build:esm" : " npm-run-all clean:esm compile:esm" ,
15
15
"build:cli" : " npm-run-all clean:cli compile:cli" ,
16
16
"compile" : " tsc --project tsconfig.json" ,
17
17
"compile:esm" : " tsc --project tsconfig-esm.json" ,
18
18
"compile:cli" : " tsc --project tsconfig-cli.json" ,
19
19
"bundle:regular" : " webpack --config webpack-regular.config.js" ,
20
- "bundle:min" : " webpack --config webpack-min .config.js" ,
20
+ "bundle:min" : " webpack --config webpack.config.js" ,
21
21
"tsc" : " ./node_modules/.bin/tsc" ,
22
22
"release" : " release-it" ,
23
23
"copy-tc-to-docs" : " ts-node ./tasks/copy-test-cases-to-docs.ts" ,
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ const banner = `/*! ${pkg.name} - v${pkg.version} */`;
8
8
9
9
module . exports = {
10
10
mode : 'production' ,
11
+ devtool : 'source-map' ,
11
12
stats : {
12
13
colors : true ,
13
14
modules : true ,
@@ -24,7 +25,7 @@ module.exports = {
24
25
globalObject : "typeof self !== 'undefined' ? self : this" ,
25
26
} ,
26
27
optimization : {
27
- minimize : false ,
28
+ minimize : true ,
28
29
} ,
29
30
module : {
30
31
rules : [
You can’t perform that action at this time.
0 commit comments