-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
90 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,8 @@ | ||
# Initial | ||
built | ||
node_modules | ||
yotta_modules | ||
yotta_targets | ||
pxt_modules | ||
*.db | ||
*.tgz | ||
.header.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
language: node_js | ||
node_js: | ||
- "8.9.4" | ||
script: | ||
- "npm install -g pxt" | ||
- "pxt target microbit" | ||
- "pxt install" | ||
- "pxt build" | ||
sudo: false | ||
cache: | ||
directories: | ||
- npm_modules | ||
- pxt_modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
all: deploy | ||
|
||
build: | ||
pxt build | ||
|
||
deploy: | ||
pxt deploy | ||
|
||
test: | ||
pxt test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# pxt-makerbit-mp3-calliope | ||
|
||
|
||
|
||
## TODO | ||
|
||
- [ ] Add a reference for your blocks here | ||
- [ ] Add "icon.png" image (300x200) in the root folder | ||
- [ ] Add "- beta" to the GitHub project description if you are still iterating it. | ||
- [ ] Turn on your automated build on https://travis-ci.org | ||
- [ ] Use "pxt bump" to create a tagged release on GitHub | ||
- [ ] Get your package reviewed and approved https://makecode.microbit.org/packages/approval | ||
|
||
Read more at https://makecode.microbit.org/packages/build-your-own | ||
|
||
## License | ||
|
||
|
||
|
||
## Supported targets | ||
|
||
* for PXT/microbit | ||
(The metadata above is needed for package search.) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
basic.showLeds(` | ||
. . . . . | ||
. # . # . | ||
. . . . . | ||
# . . . # | ||
. # # # . | ||
`); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"name": "pxt-makerbit-mp3-calliope", | ||
"version": "0.0.0", | ||
"description": "", | ||
"dependencies": { | ||
"core": "*", | ||
"radio": "*" | ||
}, | ||
"files": [ | ||
"README.md", | ||
"main.ts" | ||
], | ||
"testFiles": [ | ||
"test.ts" | ||
], | ||
"public": false, | ||
"additionalFilePaths": [] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
// tests go here; this will not be compiled when this package is used as a library |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"compilerOptions": { | ||
"target": "es5", | ||
"noImplicitAny": true, | ||
"outDir": "built", | ||
"rootDir": "." | ||
}, | ||
"exclude": ["pxt_modules/**/*test.ts"] | ||
} |