Skip to content

Commit c762caa

Browse files
committed
updated kivi to 1.0.0-rc2
1 parent a611bff commit c762caa

File tree

8 files changed

+20
-20
lines changed

8 files changed

+20
-20
lines changed
File renamed without changes.

kivi-v1.0.0-rc0/gulpfile.js renamed to kivi-v1.0.0-rc2/gulpfile.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
const gulp = require('gulp');
22
const typescript = require('typescript');
33
const ts = require('gulp-typescript');
4-
const tslint = require("gulp-tslint");
4+
//const tslint = require("gulp-tslint");
55
const rollup = require('rollup');
66
const rollupReplace = require('rollup-plugin-replace');
77
const rollupNodeResolve = require('rollup-plugin-node-resolve');
@@ -27,9 +27,9 @@ function clean() {
2727

2828
function compileTS() {
2929
return gulp.src('main.ts')
30-
.pipe(tslint({
30+
/* .pipe(tslint({
3131
formatter: "verbose",
32-
}))
32+
}))*/
3333
.pipe(ts(Object.assign(require('./tsconfig.json').compilerOptions, {
3434
typescript: require('typescript'),
3535
})))
File renamed without changes.

kivi-v1.0.0-rc0/main.ts renamed to kivi-v1.0.0-rc2/main.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ const Row = new ComponentDescriptor<RowProps, void>()
160160
c.sync(c.createVRoot().className(props.selected ? "danger" : null).children([
161161
RowTitle.createVNode().data(data.id),
162162
createVElement("td").className("col-md-4").children([
163-
createVElement("a").children(data.label),
163+
createVElement("a").child(data.label),
164164
]),
165165
createVElement("td").className("col-md-1").children([
166166
createVElement("a").children([
@@ -218,33 +218,33 @@ const Menu = new ComponentDescriptor()
218218
c.sync(c.createVRoot().className("jumbotron").children([
219219
createVElement("div").className("row").children([
220220
createVElement("div").className("col-md-6").children([
221-
createVElement("h1").children("kivi v0.11.0"),
221+
createVElement("h1").child("kivi v0.11.0"),
222222
]),
223223
createVElement("div").className("col-md-6").children([
224224
createVElement("div").className("row").children([
225225
createVElement("div").className("col-sm-6 smallpad").children([
226226
createVElement("button").props({"id": "run", "type": "button"}).className(buttonClassName)
227-
.children("Create 1,000 rows"),
227+
.child("Create 1,000 rows"),
228228
]),
229229
createVElement("div").className("col-sm-6 smallpad").children([
230230
createVElement("button").props({"id": "runlots", "type": "button"}).className(buttonClassName)
231-
.children("Create 10,000 rows"),
231+
.child("Create 10,000 rows"),
232232
]),
233233
createVElement("div").className("col-sm-6 smallpad").children([
234234
createVElement("button").props({"id": "add", "type": "button"}).className(buttonClassName)
235-
.children("Append 1,000 rows"),
235+
.child("Append 1,000 rows"),
236236
]),
237237
createVElement("div").className("col-sm-6 smallpad").children([
238238
createVElement("button").props({"id": "update", "type": "button"}).className(buttonClassName)
239-
.children("Update every 10th row"),
239+
.child("Update every 10th row"),
240240
]),
241241
createVElement("div").className("col-sm-6 smallpad").children([
242242
createVElement("button").props({"id": "clear", "type": "button"}).className(buttonClassName)
243-
.children("Clear"),
243+
.child("Clear"),
244244
]),
245245
createVElement("div").className("col-sm-6 smallpad").children([
246246
createVElement("button").props({"id": "swaprows", "type": "button"}).className(buttonClassName)
247-
.children("Swap Rows"),
247+
.child("Swap Rows"),
248248
]),
249249
]),
250250
]),

kivi-v1.0.0-rc0/package.json renamed to kivi-v1.0.0-rc2/package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,18 @@
1313
"build-prod": "gulp build"
1414
},
1515
"dependencies": {
16-
"kivi": "1.0.0-rc0"
16+
"kivi": "1.0.0-rc2"
1717
},
1818
"devDependencies": {
19-
"del": "2.2.1",
20-
"google-closure-compiler-js": "20160916.0.0",
19+
"del": "2.2.2",
20+
"google-closure-compiler-js": "20161024.0.0",
2121
"gulp": "github:gulpjs/gulp#4.0",
22-
"gulp-tslint": "6.0.1",
23-
"gulp-typescript": "2.13.6",
24-
"rollup": "0.34.7",
22+
"gulp-tslint": "6.1.3",
23+
"gulp-typescript": "3.1.3",
24+
"rollup": "0.36.3",
2525
"rollup-plugin-node-resolve": "2.0.0",
2626
"rollup-plugin-replace": "1.1.1",
27-
"tslint": "3.13.0",
28-
"typescript": "2.0.0"
27+
"tslint": "4.0.0",
28+
"typescript": "2.0.10"
2929
}
3030
}
File renamed without changes.
File renamed without changes.

webdriver-ts/src/common.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export let frameworks = [
3737
f("ember-v2.10.0-beta.2", "ember-v2.10.0-beta.2/dist"),
3838
f("elm-v0.17.1"),
3939
f("inferno-v1.0.0-beta9"),
40-
f("kivi-v1.0.0-rc0"),
40+
f("kivi-v1.0.0-rc2"),
4141
f("knockout-v3.4.0"),
4242
f("mithril-v0.2.5"),
4343
f("mithril-v1.0.0-alpha"),

0 commit comments

Comments
 (0)