File tree 3 files changed +1
-4
lines changed
3 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -7,8 +7,6 @@ var path = require('path');
7
7
8
8
var commentRx = / ^ \s * \/ (?: \/ | \* ) [ @ # ] \s + s o u r c e M a p p i n g U R L = d a t a : (?: a p p l i c a t i o n | t e x t ) \/ j s o n ; (?: c h a r s e t [: = ] \S + ?; ) ? b a s e 6 4 , (?: .* ) $ / mg;
9
9
var mapFileCommentRx =
10
- //Example (Extra space between slashes added to solve Safari bug. Exclude space in production):
11
- // / /# sourceMappingURL=foo.js.map /*# sourceMappingURL=foo.js.map */
12
10
/ (?: \/ \/ [ @ # ] [ \t ] + s o u r c e M a p p i n g U R L = ( [ ^ \s ' " ] + ?) [ \t ] * $ ) | (?: \/ \* [ @ # ] [ \t ] + s o u r c e M a p p i n g U R L = ( [ ^ \* ] + ?) [ \t ] * (?: \* \/ ) { 1 } [ \t ] * $ ) / mg
13
11
14
12
function decodeBase64 ( base64 ) {
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ module.exports = function() {
9
9
// return the list of modules as css string
10
10
list . toString = function toString ( ) {
11
11
return this . map ( function ( item ) {
12
- const content = cssWithMappingToString ( item ) ;
12
+ var content = cssWithMappingToString ( item ) ;
13
13
if ( item [ 2 ] ) {
14
14
return "@media " + item [ 2 ] + "{" + content + "}" ;
15
15
} else {
Original file line number Diff line number Diff line change 13
13
],
14
14
"dependencies" : {
15
15
"babel-code-frame" : " ^6.11.0" ,
16
- "convert-source-map" : " ^1.3.0" ,
17
16
"css-selector-tokenizer" : " ^0.7.0" ,
18
17
"cssnano" : " >=2.6.1 <4" ,
19
18
"loader-utils" : " ^1.0.2" ,
You can’t perform that action at this time.
0 commit comments