File tree 4 files changed +13
-14
lines changed
4 files changed +13
-14
lines changed Original file line number Diff line number Diff line change @@ -2,3 +2,5 @@ node_modules/*
2
2
.DS_Store
3
3
npm-debug.log
4
4
package-lock.json
5
+
6
+ * .tgz
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ pbxProject.prototype.allUuids = function() {
98
98
pbxProject . prototype . generateUuid = function ( ) {
99
99
var id = $uuid . v4 ( )
100
100
. replace ( / - / g, '' )
101
- . substr ( 0 , 24 )
101
+ . substring ( 0 , 24 )
102
102
. toUpperCase ( )
103
103
104
104
if ( this . allUuids ( ) . indexOf ( id ) >= 0 ) {
Original file line number Diff line number Diff line change 4
4
"description" : " parser for xcodeproj/project.pbxproj files" ,
5
5
"main" : " index.js" ,
6
6
"version" : " 0.3.0" ,
7
+ "files" : [
8
+ " lib" ,
9
+ " !lib/parser/pbxproj.pegjs"
10
+ ],
7
11
"repository" : {
8
12
"url" : " https://github.com/NativeScript/nativescript-dev-xcode.git"
9
13
},
10
14
"engines" : {
11
15
"node" : " >=6.0.0"
12
16
},
13
17
"dependencies" : {
14
- "simple-plist" : " ^1.0.0 " ,
15
- "uuid" : " ^3.3.2 "
18
+ "simple-plist" : " 1.3.1 " ,
19
+ "uuid" : " 9.0.0 "
16
20
},
17
21
"devDependencies" : {
18
- "nodeunit" : " ^ 0.11.3" ,
19
- "pegjs" : " ^ 0.10.0"
22
+ "nodeunit" : " 0.11.3" ,
23
+ "pegjs" : " 0.10.0"
20
24
},
21
25
"scripts" : {
22
- "pegjs" : " node_modules/.bin/ pegjs lib/parser/pbxproj.pegjs" ,
23
- "test" : " node_modules/.bin/ nodeunit test/parser test"
26
+ "pegjs" : " pegjs lib/parser/pbxproj.pegjs" ,
27
+ "test" : " nodeunit test/parser test"
24
28
},
25
29
"license" : " Apache-2.0"
26
30
}
You can’t perform that action at this time.
0 commit comments