This commit is contained in:
Michael Elliot Braun 2016-03-30 11:15:41 -07:00
commit 085af70db3
4 changed files with 8 additions and 3 deletions

1
.gitignore vendored
View File

@ -6,3 +6,4 @@ tmp/
*.ts.new *.ts.new
*.tgz *.tgz
temp/ temp/
*.db

View File

@ -70,6 +70,10 @@
"serial" : { "serial" : {
"manufacturerFilter": "^mbed$", "manufacturerFilter": "^mbed$",
"log": true "log": true
},
"cloud" : {
"workspace": false,
"packages": true
} }
} }
} }

View File

@ -1,4 +1,4 @@
//% weight=2 //% weight=2 color=30
namespace serial { namespace serial {
/** /**
* Prints a line of text to the serial * Prints a line of text to the serial

View File

@ -1,6 +1,6 @@
{ {
"name": "kindscript-microbit", "name": "kindscript-microbit",
"version": "0.0.15", "version": "0.0.16",
"description": "BBC micro:bit target for KindScript", "description": "BBC micro:bit target for KindScript",
"keywords": [ "keywords": [
"JavaScript", "JavaScript",
@ -30,6 +30,6 @@
"typescript": "^1.8.7" "typescript": "^1.8.7"
}, },
"dependencies": { "dependencies": {
"kindscript": "0.1.121" "kindscript": "0.1.123"
} }
} }