Skip to content

Commit 8f39837

Browse files
author
Dick Smith
committed
A few more changes
1 parent 2aa1583 commit 8f39837

File tree

6 files changed

+14
-19
lines changed

6 files changed

+14
-19
lines changed

angular/index.d.ts

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

checkbox.ios.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
/// <reference path="BEMCheckBox.d.ts" /> Needed for autocompletion and compilation.
2-
31
import { CheckBoxInterface } from "./index";
42
import {
53
Property,

demo/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,23 @@
22
"nativescript": {
33
"id": "org.nativescript.demo",
44
"tns-android": {
5-
"version": "3.0.0"
5+
"version": "3.0.1"
66
},
77
"tns-ios": {
8-
"version": "3.0.0"
8+
"version": "3.0.1"
99
}
1010
},
1111
"dependencies": {
1212
"nativescript-checkbox": "file:..",
1313
"tns-core-modules": "^3.0.0"
1414
},
1515
"devDependencies": {
16-
"babel-traverse": "6.7.6",
17-
"babel-types": "6.7.7",
18-
"babylon": "6.7.0",
19-
"filewalker": "0.1.2",
16+
"babel-traverse": "6.24.1",
17+
"babel-types": "6.24.1",
18+
"babylon": "6.17.2",
19+
"filewalker": "0.1.3",
2020
"lazy": "1.0.11",
21-
"nativescript-dev-typescript": "^0.3.2",
21+
"nativescript-dev-typescript": "^0.4.5",
2222
"typescript": "^2.2.0",
2323
"tns-platform-declarations": "^3.0.0"
2424
}

gruntfile.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ module.exports = function (grunt) {
22
var localConfig = {
33
typeScriptDeclarations: [
44
"**/*.d.ts",
5-
"!references.d.ts",
6-
"!BEMCheckBox.d.ts",
75
"!node_modules/**/*.*",
86
"!demo/**/*.*",
97
"!demo-ng/**/*.*",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"demo.android": "npm run preparedemo && cd demo && tns run android",
2020
"debug.ios": "npm run preparedemo && cd demo && tns debug ios",
2121
"debug.android": "npm run preparedemo && cd demo && tns debug android",
22-
"preparedemo": "npm run build && cd demo && tns plugin remove nativescript-checkbox && tns plugin add .. && tns install",
22+
"preparedemo": "cd demo && tns plugin remove nativescript-checkbox && tns plugin add .. && tns install",
2323
"setup": "cd demo && npm install && cd .. && npm run build && cd demo && tns plugin add .. && cd .."
2424
},
2525
"repository": {

tsconfig.json

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,11 @@
1919
]
2020
}
2121
},
22-
"exclude": [
23-
"node_modules",
24-
"demo",
25-
"demo-ng",
26-
"bin"
22+
"include": [
23+
"index.d.ts",
24+
"BEMCheckBox.d.ts",
25+
"checkbox.android.ts",
26+
"checkbox.ios.ts",
27+
"angular/index.ts"
2728
]
2829
}

0 commit comments

Comments
 (0)