Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased

### Changed
- `bedrock-auto` no longer generates source maps. #TINY-13384

## 16.0.0 - 2026-02-20

### Changed
Expand Down
2 changes: 1 addition & 1 deletion modules/server/src/main/ts/bedrock/compiler/Rspack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const getWebPackConfigTs = (tsConfigFile: string, scratchFile: string, dest: str

return {
entry: scratchFile,
devtool: manualMode ? 'inline-source-map' : 'source-map',
devtool: manualMode ? 'inline-source-map' : false,
mode: manualMode ? 'development' : 'none',
target: ['web', 'es5'],

Expand Down
2 changes: 1 addition & 1 deletion modules/server/src/main/ts/bedrock/compiler/Webpack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const getWebPackConfigTs = (tsConfigFile: string, scratchFile: string, dest: str
return {
stats: 'none',
entry: scratchFile,
devtool: manualMode ? 'inline-source-map' : 'source-map',
devtool: manualMode ? 'inline-source-map' : false,
mode: manualMode ? 'development' : 'none',
target: [ 'web', 'es5' ],

Expand Down
Loading