File tree Expand file tree Collapse file tree 2 files changed +3
-6
lines changed Expand file tree Collapse file tree 2 files changed +3
-6
lines changed Original file line number Diff line number Diff line change 1
1
var DtsCreator = require ( 'typed-css-modules' ) ;
2
2
var loaderUtils = require ( 'loader-utils' ) ;
3
- var objectAssign = require ( 'object-assign' ) ;
4
3
5
4
module . exports = function ( source , map ) {
6
5
this . cacheable && this . cacheable ( ) ;
@@ -12,7 +11,7 @@ module.exports = function(source, map) {
12
11
var queryOptions = loaderUtils . parseQuery ( this . query ) ;
13
12
var options ;
14
13
if ( queryOptions ) {
15
- options = objectAssign ( { } , queryOptions ) ;
14
+ options = Object . assign ( { } , queryOptions ) ;
16
15
}
17
16
18
17
var creator = new DtsCreator ( options ) ;
@@ -25,4 +24,3 @@ module.exports = function(source, map) {
25
24
} ) ;
26
25
} ) ;
27
26
} ;
28
-
Original file line number Diff line number Diff line change 16
16
" css-modules"
17
17
],
18
18
"peerDependencies" : {
19
- "typed-css-modules" : " ^0.1.10 "
19
+ "typed-css-modules" : " ^0.2.0 "
20
20
},
21
21
"author" : " Oleg Stepura" ,
22
22
"license" : " MIT" ,
23
23
"bugs" : {
24
24
"url" : " https://github.com/olegstepura/typed-css-modules-loader/issues"
25
25
},
26
26
"dependencies" : {
27
- "loader-utils" : " ^0.2.15" ,
28
- "object-assign" : " ^4.1.0"
27
+ "loader-utils" : " ^0.2.15"
29
28
}
30
29
}
You can’t perform that action at this time.
0 commit comments