Skip to content

Commit d335b5c

Browse files
CI (linting)
1 parent 085f161 commit d335b5c

File tree

4 files changed

+9
-12
lines changed

4 files changed

+9
-12
lines changed

demo/nsconfig.json

Lines changed: 0 additions & 3 deletions
This file was deleted.

demo/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,25 +6,25 @@
66
"nativescript": {
77
"id": "org.nativescript.plugindemo.localnotifications",
88
"tns-ios": {
9-
"version": "6.0.0-rc-2019-06-28-105002-01"
9+
"version": "6.0.1"
1010
},
1111
"tns-android": {
12-
"version": "6.0.0-rc-2019-06-27-172817-03"
12+
"version": "6.0.0"
1313
}
1414
},
1515
"dependencies": {
1616
"nativescript-local-notifications": "file:../src",
17-
"nativescript-theme-core": "~1.0.4",
18-
"tns-core-modules": "6.0.0-rc-2019-06-28-175837-02"
17+
"nativescript-theme-core": "~1.0.6",
18+
"tns-core-modules": "~6.0.0"
1919
},
2020
"devDependencies": {
2121
"babel-traverse": "6.26.0",
2222
"babel-types": "6.26.0",
2323
"babylon": "6.18.0",
2424
"lazy": "1.0.11",
25-
"nativescript-dev-webpack": "1.0.0-rc-2019-07-02-161545-02",
26-
"tns-platform-declarations": "6.0.0-rc-2019-06-28-175837-02",
27-
"typescript": "3.4.1"
25+
"nativescript-dev-webpack": "1.0.1",
26+
"tns-platform-declarations": "~6.0.0",
27+
"typescript": "3.4.5"
2828
},
2929
"scripts": {
3030
"build.plugin": "cd ../src && npm run build"

src/local-notifications.android.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ export class LocalNotificationsImpl extends LocalNotificationsCommon implements
222222
options.color = options.color.android;
223223
}
224224

225-
if (options.notificationLed && options.notificationLed !== true){
225+
if (options.notificationLed && options.notificationLed !== true) {
226226
options.notificationLed = options.notificationLed.android;
227227
}
228228

src/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"setupandinstall": "npm i && cd ../demo && npm i && cd ../src && npm run build && cd ../demo && tns plugin add ../src && cd ../src",
2929
"tslint": "tslint --config '../tslint.json' '*.ts' --exclude '**/node_modules/**'",
3030
"tslint.demo": "tslint --config '../tslint.json' '../demo/app/*.ts' --exclude '**/node_modules/**'",
31-
"ci.tslint": "npm i && tslint '**/*.ts' --config '../tslint.json' --exclude '**/node_modules/**'",
31+
"ci.tslint": "npm i && tslint '**/*.ts' --config '../tslint.json' --exclude '**/node_modules/**' --exclude '**/platforms/**'",
3232
"prepublishOnly": "npm run build",
3333
"development.setup": "npm run setup && npm link && cd ../demo && npm link nativescript-mapbox && cd ../src",
3434
"generate.typings.ios": "cd ../demo && TNS_DEBUG_METADATA_PATH=\"$(pwd)/metadata\" tns build ios && TNS_TYPESCRIPT_DECLARATIONS_PATH=\"$(pwd)/typings\" tns build ios && echo 'Now look for your library typings in demo/typings!'"

0 commit comments

Comments
 (0)