James Ayvaz

Results 4 comments of James Ayvaz

Unfortunately I don't think changing the text size is possible without building from source. I am working on an update that should fix this.

Should be `devDependency("babel-core")` to `devDependency("@babel/core")` at line 38.

#!/usr/bin/env kscript // See here for kscript installation instructions // https://github.com/holgerbrandl/kscript @file:DependsOn("com.amazon.redshift:redshift-jdbc4:1.1.17.1017") @file:MavenRepository("redshift", "http://redshift-maven-repository.s3-website-us-east-1.amazonaws.com/release") @file:CompilerOpts("-jvm-target 1.8") import java.sql.* import java.util.* import java.util.concurrent.TimeUnit fun main(args: Array) { var conn: Connection? =...

I don't think the typedefs are updated (2.1.1) - I got it working by just using the javascript directly and ignoring syntax checker ``` const MultiStream = require("multistream"); new MultiStream(streams).pipe(stream);...