diff --git a/app/package-lock.json b/app/package-lock.json index 8c5999f..45b62b3 100644 --- a/app/package-lock.json +++ b/app/package-lock.json @@ -1,6 +1,6 @@ { "name": "com.sixteenmillimeter.intval3", - "version": "1.0.6", + "version": "1.0.7", "lockfileVersion": 1, "requires": true, "dependencies": { @@ -83,6 +83,13 @@ "requires": { "simple-plist": "^1.0.0", "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==" }, "uuid": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.3.3.tgz", - "integrity": "sha512-pW0No1RGHgzlpHJO1nsVrHKpOEIxkGg1xB+v0ZmdNH5OAeAwzAVrCnI2/6Mtx+Uys6iaylxa+D3g4j63IKKjSQ==" + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.0.0.tgz", + "integrity": "sha512-jOXGuXZAWdsTH7eZLtyXMqUb9EcWMGZNbL9YcGBJl4MH4nrxHmZJhEHvyLFrkxo+28uLb/NYRcStH48fnD0Vzw==" }, "which": { "version": "1.3.1", @@ -793,6 +800,13 @@ "requires": { "simple-plist": "^1.0.0", "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": { diff --git a/app/package.json b/app/package.json index 9c608e0..5f73e1d 100644 --- a/app/package.json +++ b/app/package.json @@ -1,12 +1,13 @@ { "name": "com.sixteenmillimeter.intval3", "displayName": "INTVAL3", - "version": "1.0.6", + "version": "1.0.7", "description": "Mobile control app for the INTVAL intervalometer for Bolex 16mm cameras", "main": "index.js", "scripts": { "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", "license": "MIT", @@ -26,7 +27,8 @@ "cordova-plugin-dialogs": "^2.0.2", "cordova-plugin-splashscreen": "^5.0.3", "cordova-plugin-statusbar": "^2.4.3", - "cordova-plugin-whitelist": "^1.3.4" + "cordova-plugin-whitelist": "^1.3.4", + "uuid": "^8.0.0" }, "cordova": { "plugins": { @@ -47,4 +49,4 @@ "android" ] } -} \ No newline at end of file +}