File tree Expand file tree Collapse file tree 2 files changed +11
-5
lines changed
warehouse/static/sass/blocks Expand file tree Collapse file tree 2 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 99
99
padding-bottom : 2px ;
100
100
}
101
101
102
- & __yanked-reason p {
103
- overflow : hidden ;
104
- text-overflow : ellipsis ;
105
- white-space : nowrap ;
102
+ & __yanked-reason {
103
+ display : block ;
104
+
105
+ p {
106
+ overflow : hidden ;
107
+ text-overflow : ellipsis ;
108
+ white-space : nowrap ;
109
+ }
106
110
}
107
111
108
112
& --current {
Original file line number Diff line number Diff line change 1
1
/* SPDX-License-Identifier: Apache-2.0 */
2
2
3
- /* global module, __dirname */
3
+ /* global module, process, __dirname */
4
4
5
5
// This is the main configuration file for webpack.
6
6
// See: https://webpack.js.org/configuration/
@@ -372,6 +372,8 @@ module.exports = [
372
372
path : path . resolve ( __dirname , "warehouse/static/dist" ) ,
373
373
} ,
374
374
dependencies : [ "warehouse" ] ,
375
+ // Emit fewer stats-per-language in non-production builds.
376
+ stats : ( process . env . NODE_ENV === "production" ) ? undefined : "errors-warnings" ,
375
377
} ;
376
378
} ) ,
377
379
] ;
You can’t perform that action at this time.
0 commit comments