File tree Expand file tree Collapse file tree 2 files changed +11
-3
lines changed Expand file tree Collapse file tree 2 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 29
29
"path" : " node_modules/cz-conventional-changelog"
30
30
}
31
31
},
32
+ "dependencies" : {
33
+ "jsondiffpatch" : " ^0.1.38" ,
34
+ "underscore" : " ^1.0.4"
35
+ },
32
36
"peerDependencies" : {
33
37
"angular" : " ^1.4.0"
34
38
},
35
39
"devDependencies" : {
36
- "babel" : " ^6.3.26 " ,
40
+ "babel" : " ^6.3.26" ,
37
41
"babel-core" : " ^6.4.5" ,
38
42
"babel-eslint" : " ^4.1.6" ,
39
43
"babel-loader" : " ^6.2.1" ,
Original file line number Diff line number Diff line change @@ -19,8 +19,8 @@ var common = {
19
19
// global variables
20
20
externals : {
21
21
angular : 'angular' ,
22
- underscore : '_' ,
23
22
jsondiffpatch : 'jsondiffpatch' ,
23
+ '_' : 'underscore' ,
24
24
Meteor : 'Meteor' ,
25
25
Package : 'Package' ,
26
26
Tracker : 'Tracker'
@@ -50,7 +50,11 @@ var common = {
50
50
} ,
51
51
plugins : [
52
52
// add information about name and version of angular-meteor package
53
- new webpack . BannerPlugin ( pkg . name + ' v' + pkg . version )
53
+ new webpack . BannerPlugin ( pkg . name + ' v' + pkg . version ) ,
54
+ new webpack . ProvidePlugin ( {
55
+ '_' : 'underscore' ,
56
+ 'jsondiffpatch' : 'jsondiffpatch'
57
+ } )
54
58
] ,
55
59
resolve : {
56
60
extensions : [ '' , '.js' ]
You can’t perform that action at this time.
0 commit comments