Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 8 additions & 9 deletions demo-angular/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
"nativescript": {
"id": "org.nativescript.demo.angular",
"tns-android": {
"version": "5.4.0"
"version": "6.0.0"
},
"tns-ios": {
"version": "5.4.0"
"version": "6.0.1"
}
},
"scripts": {
Expand All @@ -32,17 +32,16 @@
"nativescript-camera": "../src",
"nativescript-theme-core": "^1.0.4",
"rxjs": "^6.3.3",
"tns-core-modules": "^5.0.0",
"zone.js": "^0.8.4",
"typescript": "~3.4.5"
"tns-core-modules": "^6.0.0",
"zone.js": "^0.8.4"
},
"devDependencies": {
"@angular/compiler-cli": "~8.0.0",
"@ngtools/webpack": "~8.0.0",
"nativescript-css-loader": "~0.26.0",
"nativescript-dev-typescript": "~0.10.0",
"nativescript-dev-webpack": "~0.24.0",
"tns-platform-declarations": "^5.0.0",
"tslint": "~5.11.0"
"nativescript-dev-webpack": "~1.0.1",
"tns-platform-declarations": "^6.0.0",
"tslint": "~5.11.0",
"typescript": "~3.4.5"
}
}
18 changes: 9 additions & 9 deletions demo-vue/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
"nativescript": {
"id": "org.nativescript.demovue",
"tns-android": {
"version": "5.4.0"
"version": "6.0.0"
},
"tns-ios": {
"version": "5.4.0"
"version": "6.0.1"
}
},
"scripts": {
Expand All @@ -15,8 +15,8 @@
"dependencies": {
"nativescript-camera": "../src",
"nativescript-theme-core": "~1.0.4",
"nativescript-vue": "~2.2.0",
"tns-core-modules": "^5.0.0"
"nativescript-vue": "~2.3.0",
"tns-core-modules": "^6.0.0"
},
"devDependencies": {
"@babel/core": "~7.1.0",
Expand All @@ -30,11 +30,11 @@
"mocha-multi": "^1.0.1",
"mochawesome": "^3.1.1",
"nativescript-dev-appium": "~5.2.0",
"nativescript-dev-typescript": "~0.10.0",
"nativescript-dev-webpack": "~0.24.0",
"nativescript-vue-template-compiler": "~2.2.0",
"node-sass": "~4.9.0",
"nativescript-dev-webpack": "~1.0.1",
"nativescript-vue-template-compiler": "~2.3.0",
"node-sass": "~4.12.0",
"tslint": "~5.12.1",
"vue-loader": "~15.4.0"
"vue-loader": "~15.4.0",
"typescript": "~3.4.5"
}
}
14 changes: 7 additions & 7 deletions demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
"nativescript": {
"id": "org.nativescript.demo",
"tns-android": {
"version": "5.4.0"
"version": "6.0.0"
},
"tns-ios": {
"version": "5.4.0"
"version": "6.0.1"
}
},
"scripts": {
Expand All @@ -23,7 +23,7 @@
},
"dependencies": {
"nativescript-camera": "../src",
"tns-core-modules": "^5.0.0"
"tns-core-modules": "^6.0.0"
},
"devDependencies": {
"@types/chai": "~4.1.7",
Expand All @@ -35,9 +35,9 @@
"mochawesome": "^3.1.1",
"nativescript-css-loader": "~0.26.1",
"nativescript-dev-appium": "~5.2.0",
"nativescript-dev-typescript": "~0.10.0",
"nativescript-dev-webpack": "~0.24.0",
"tns-platform-declarations": "^5.0.0",
"tslint": "~5.11.0"
"nativescript-dev-webpack": "~1.0.1",
"tns-platform-declarations": "^6.0.0",
"tslint": "~5.11.0",
"typescript": "~3.4.5"
}
}
8 changes: 4 additions & 4 deletions src/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@
"tslint": "cd .. && tslint \"**/*.ts\" --config tslint.json --exclude \"**/node_modules/**\"",
"plugin.link": "npm link && cd ../demo && npm link nativescript-camera",
"plugin.tscwatch": "npm run tsc -- -w",
"demo.ios": "npm i && npm run tsc && cd ../demo && tns run ios --syncAllFiles",
"demo.android": "npm i && npm run tsc && cd ../demo && tns run android --syncAllFiles",
"demo.ng.ios": "npm i && npm run tsc && cd ../demo-angular && tns run ios --syncAllFiles",
"demo.ng.android": "npm i && npm run tsc && cd ../demo-angular && tns run android --syncAllFiles",
"demo.ios": "npm i && npm run tsc && cd ../demo && tns run ios",
"demo.android": "npm i && npm run tsc && cd ../demo && tns run android",
"demo.ng.ios": "npm i && npm run tsc && cd ../demo-angular && tns run ios",
"demo.ng.android": "npm i && npm run tsc && cd ../demo-angular && tns run android",
"demo.reset": "cd ../demo && rimraf platforms",
"plugin.prepare": "npm run tsc && cd ../demo && tns plugin remove nativescript-camera && tns plugin add ../src",
"clean": "cd ../demo && rimraf hooks node_modules platforms && cd ../src && rimraf node_modules && npm run plugin.link",
Expand Down