Install uuid for build script. Increment patch

This commit is contained in:
mmcwilliams 2020-05-19 17:06:24 -04:00
parent f03f83f33e
commit d4acede481
2 changed files with 24 additions and 8 deletions

22
app/package-lock.json generated
View File

@ -1,6 +1,6 @@
{ {
"name": "com.sixteenmillimeter.intval3", "name": "com.sixteenmillimeter.intval3",
"version": "1.0.6", "version": "1.0.7",
"lockfileVersion": 1, "lockfileVersion": 1,
"requires": true, "requires": true,
"dependencies": { "dependencies": {
@ -83,6 +83,13 @@
"requires": { "requires": {
"simple-plist": "^1.0.0", "simple-plist": "^1.0.0",
"uuid": "^3.3.2" "uuid": "^3.3.2"
},
"dependencies": {
"uuid": {
"version": "3.4.0",
"resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz",
"integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A=="
}
} }
} }
} }
@ -769,9 +776,9 @@
"integrity": "sha512-b2/KCUlYZUeA7JFUuRJZPUtr4gZvBh7tavtv4fvk4+KV9pfGiR6CQAQAWl49ZpR3ts2dk4FYkP7EIgDJoiOLDA==" "integrity": "sha512-b2/KCUlYZUeA7JFUuRJZPUtr4gZvBh7tavtv4fvk4+KV9pfGiR6CQAQAWl49ZpR3ts2dk4FYkP7EIgDJoiOLDA=="
}, },
"uuid": { "uuid": {
"version": "3.3.3", "version": "8.0.0",
"resolved": "https://registry.npmjs.org/uuid/-/uuid-3.3.3.tgz", "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.0.0.tgz",
"integrity": "sha512-pW0No1RGHgzlpHJO1nsVrHKpOEIxkGg1xB+v0ZmdNH5OAeAwzAVrCnI2/6Mtx+Uys6iaylxa+D3g4j63IKKjSQ==" "integrity": "sha512-jOXGuXZAWdsTH7eZLtyXMqUb9EcWMGZNbL9YcGBJl4MH4nrxHmZJhEHvyLFrkxo+28uLb/NYRcStH48fnD0Vzw=="
}, },
"which": { "which": {
"version": "1.3.1", "version": "1.3.1",
@ -793,6 +800,13 @@
"requires": { "requires": {
"simple-plist": "^1.0.0", "simple-plist": "^1.0.0",
"uuid": "^3.3.2" "uuid": "^3.3.2"
},
"dependencies": {
"uuid": {
"version": "3.4.0",
"resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz",
"integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A=="
}
} }
}, },
"xml-escape": { "xml-escape": {

View File

@ -1,12 +1,13 @@
{ {
"name": "com.sixteenmillimeter.intval3", "name": "com.sixteenmillimeter.intval3",
"displayName": "INTVAL3", "displayName": "INTVAL3",
"version": "1.0.6", "version": "1.0.7",
"description": "Mobile control app for the INTVAL intervalometer for Bolex 16mm cameras", "description": "Mobile control app for the INTVAL intervalometer for Bolex 16mm cameras",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {
"test": "echo \"Error: no test specified\" && exit 1", "test": "echo \"Error: no test specified\" && exit 1",
"ios": "cordova build ios --buildFlag='-UseModernBuildSystem=0'" "ios": "npm run build && cordova build ios --buildFlag='-UseModernBuildSystem=0'",
"build": "node ./scripts/build.js"
}, },
"author": "M McWilliams", "author": "M McWilliams",
"license": "MIT", "license": "MIT",
@ -26,7 +27,8 @@
"cordova-plugin-dialogs": "^2.0.2", "cordova-plugin-dialogs": "^2.0.2",
"cordova-plugin-splashscreen": "^5.0.3", "cordova-plugin-splashscreen": "^5.0.3",
"cordova-plugin-statusbar": "^2.4.3", "cordova-plugin-statusbar": "^2.4.3",
"cordova-plugin-whitelist": "^1.3.4" "cordova-plugin-whitelist": "^1.3.4",
"uuid": "^8.0.0"
}, },
"cordova": { "cordova": {
"plugins": { "plugins": {
@ -47,4 +49,4 @@
"android" "android"
] ]
} }
} }