Skip to content

Commit 2aad417

Browse files
committed
chore: update deps
1 parent 9f4ca08 commit 2aad417

File tree

4 files changed

+13
-14
lines changed

4 files changed

+13
-14
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,5 @@ node_modules/*
22
.DS_Store
33
npm-debug.log
44
package-lock.json
5+
6+
*.tgz

.npmignore

-7
This file was deleted.

lib/pbxProject.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ pbxProject.prototype.allUuids = function() {
9898
pbxProject.prototype.generateUuid = function() {
9999
var id = $uuid.v4()
100100
.replace(/-/g, '')
101-
.substr(0, 24)
101+
.substring(0, 24)
102102
.toUpperCase()
103103

104104
if (this.allUuids().indexOf(id) >= 0) {

package.json

+10-6
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,27 @@
44
"description": "parser for xcodeproj/project.pbxproj files",
55
"main": "index.js",
66
"version": "0.3.0",
7+
"files": [
8+
"lib",
9+
"!lib/parser/pbxproj.pegjs"
10+
],
711
"repository": {
812
"url": "https://github.com/NativeScript/nativescript-dev-xcode.git"
913
},
1014
"engines": {
1115
"node": ">=6.0.0"
1216
},
1317
"dependencies": {
14-
"simple-plist": "^1.0.0",
15-
"uuid": "^3.3.2"
18+
"simple-plist": "1.3.1",
19+
"uuid": "9.0.0"
1620
},
1721
"devDependencies": {
18-
"nodeunit": "^0.11.3",
19-
"pegjs": "^0.10.0"
22+
"nodeunit": "0.11.3",
23+
"pegjs": "0.10.0"
2024
},
2125
"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"
2428
},
2529
"license": "Apache-2.0"
2630
}

0 commit comments

Comments
 (0)