diff --git a/.gitignore b/.gitignore index 5fc0b17f..971ce600 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ tmp/ *.ts.new *.tgz temp/ +*.db diff --git a/libs/microbit/kind.json b/libs/microbit/kind.json index 6cd6bc30..13e58da5 100644 --- a/libs/microbit/kind.json +++ b/libs/microbit/kind.json @@ -70,6 +70,10 @@ "serial" : { "manufacturerFilter": "^mbed$", "log": true + }, + "cloud" : { + "workspace": false, + "packages": true } } } diff --git a/libs/microbit/serial.ts b/libs/microbit/serial.ts index 5c270799..b1106b98 100644 --- a/libs/microbit/serial.ts +++ b/libs/microbit/serial.ts @@ -1,4 +1,4 @@ -//% weight=2 +//% weight=2 color=30 namespace serial { /** * Prints a line of text to the serial diff --git a/package.json b/package.json index d266e1d1..10228122 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "kindscript-microbit", - "version": "0.0.15", + "version": "0.0.16", "description": "BBC micro:bit target for KindScript", "keywords": [ "JavaScript", @@ -30,6 +30,6 @@ "typescript": "^1.8.7" }, "dependencies": { - "kindscript": "0.1.121" + "kindscript": "0.1.123" } }