From 9c5324999e486eafbc3db63189c390b7c86a824e Mon Sep 17 00:00:00 2001 From: Robert Jaros Date: Wed, 31 Jan 2018 00:13:53 +0100 Subject: gitignore, kotlin upgrade for helloworld example --- examples/helloworld/.gitignore | 3 ++- examples/helloworld/build.gradle | 2 +- examples/showcase/.gitignore | 3 ++- examples/todomvc/.gitignore | 3 ++- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/examples/helloworld/.gitignore b/examples/helloworld/.gitignore index 4d615936..631a8b87 100644 --- a/examples/helloworld/.gitignore +++ b/examples/helloworld/.gitignore @@ -1,4 +1,5 @@ .*/ build/ out/ -*.iml \ No newline at end of file +*.iml +/refresh.sh diff --git a/examples/helloworld/build.gradle b/examples/helloworld/build.gradle index 7890fb72..8ffec081 100644 --- a/examples/helloworld/build.gradle +++ b/examples/helloworld/build.gradle @@ -1,5 +1,5 @@ buildscript { - ext.kotlin_version = '1.2.20' + ext.kotlin_version = '1.2.21' ext.production = (findProperty('prod') ?: 'false') == 'true' ext.npmdeps = new URL("file:///home/rjaros/git/kvision/npm.dependencies").getText() diff --git a/examples/showcase/.gitignore b/examples/showcase/.gitignore index 4d615936..631a8b87 100644 --- a/examples/showcase/.gitignore +++ b/examples/showcase/.gitignore @@ -1,4 +1,5 @@ .*/ build/ out/ -*.iml \ No newline at end of file +*.iml +/refresh.sh diff --git a/examples/todomvc/.gitignore b/examples/todomvc/.gitignore index 4d615936..631a8b87 100644 --- a/examples/todomvc/.gitignore +++ b/examples/todomvc/.gitignore @@ -1,4 +1,5 @@ .*/ build/ out/ -*.iml \ No newline at end of file +*.iml +/refresh.sh -- cgit