Skip to content

Commit eddbbb2

Browse files
committed
fix package ref
1 parent 3f72186 commit eddbbb2

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

demo-ng/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"@angular/platform-browser-dynamic": "~4.4.4",
2424
"@angular/router": "~4.4.4",
2525
"nativescript-angular": "~4.4.1",
26-
"nativescript-camera-plus": "file:../src",
26+
"@nstudio/nativescript-camera-plus": "file:../src",
2727
"nativescript-theme-core": "~1.0.2",
2828
"reflect-metadata": "~0.1.8",
2929
"rxjs": "~5.3.0",

demo/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
}
77
},
88
"dependencies": {
9-
"nativescript-camera-plus": "file:../src",
9+
"@nstudio/nativescript-camera-plus": "file:../src",
1010
"nativescript-theme-core": "^1.0.4",
1111
"nativescript-unit-test-runner": "^0.3.4",
1212
"tns-core-modules": "^3.4.0"

src/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"build": "npm i && tsc",
1717
"link": "npm i && cd ../demo && npm i && cd ../src && npm run plugin.link",
1818
"demo.reset": "cd ../demo && rimraf platforms",
19-
"plugin.link": "npm link && cd ../demo && npm link nativescript-camera-plus && cd ../src",
19+
"plugin.link": "npm link && cd ../demo && npm link @nstudio/nativescript-camera-plus && cd ../src",
2020
"plugin.tscwatch": "npm run tsc -- -w",
2121
"nuke": "rm -rf node_modules && cd ../demo && rm -rf hooks node_modules platforms && cd ../demo-ng && rm -rf hooks node_modules platforms",
2222
"demo.ios": "npm run preparedemo && cd demo && tns run ios --syncAllFiles",
@@ -30,8 +30,8 @@
3030
"test.ios": "cd demo && tns test ios --emulator",
3131
"test.ios.device": "cd demo && tns test ios",
3232
"test.android": "cd demo && tns test android",
33-
"preparedemo": "npm i && npm run build && cd ../demo && tns plugin remove nativescript-camera-plus && tns plugin add ../src && tns install",
34-
"preparedemong": "npm i && npm run build && cd ../demo-ng && tns plugin remove nativescript-camera-plus && tns plugin add ../src && tns install",
33+
"preparedemo": "npm i && npm run build && cd ../demo && tns plugin remove @nstudio/nativescript-camera-plus && tns plugin add ../src && tns install",
34+
"preparedemong": "npm i && npm run build && cd ../demo-ng && tns plugin remove @nstudio/nativescript-camera-plus && tns plugin add ../src && tns install",
3535
"setup": "npm i && cd demo && npm i && cd .. && npm run build && cd demo && tns plugin add .. && cd ..",
3636
"postclone": "npm i && node scripts/postclone.js"
3737
},

0 commit comments

Comments
 (0)