Skip to content

Commit

Permalink
Merge pull request #3188 from Geoportail-Luxembourg/fix_minimizer
Browse files Browse the repository at this point in the history
Fix minimizer
  • Loading branch information
rmichaelis authored Oct 7, 2024
2 parents 3291cd0 + ed42bb6 commit 8ddb7ab
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<h1>{{layers.layerLabel | translate}}</h1>
<div ng-repeat="feature in layers.features" class="poi-feature">
<h3>{{feature.attributes.station}} ({{feature.attributes.icao}})</h3>
<label>{{feature.attributes.weather}}</label>&nbsp;<span>{{feature.attributes.temperature}}°C</span>
</div>
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<h1>{{layers.layerLabel | translate}}</h1>
<div ng-repeat="feature in layers.features" class="poi-feature">
<h3>{{feature.attributes.station}} ({{feature.attributes.icao}})</h3>
<label>TAF:</label> <span>{{feature.attributes.taf}}</span></span><br>
<label>Metar:</label> <span>{{feature.attributes.metar}}</span></span>
</div>
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,6 @@ module.exports = function(UglifyJsPluginCache) {
},
optimization: {
minimizer: [
new UglifyJsPlugin({
cache: UglifyJsPluginCache,
parallel: true,
sourceMap: true,
uglifyOptions: {
compress: false
}
})
]
},
resolve: {
Expand Down

0 comments on commit 8ddb7ab

Please sign in to comment.