* rename "microbit" package to "core" #414 * shouldn't edit the package id. * updating package.json * updated the wrong version * missed updating pxt.json of tests
This commit is contained in:
committed by
Peli de Halleux
parent
80131f2928
commit
277d5a721c
@ -4,12 +4,12 @@
|
||||
"name": "code the micro:bit",
|
||||
"title": "code the micro:bit - Blocks / Javascript editor",
|
||||
"description": "A Blocks / JavaScript code editor for the micro:bit.",
|
||||
"corepkg": "microbit",
|
||||
"corepkg": "core",
|
||||
"bundleddirs": [
|
||||
"libs/microbit",
|
||||
"libs/microbit-radio",
|
||||
"libs/microbit-devices",
|
||||
"libs/microbit-bluetooth"
|
||||
"libs/core",
|
||||
"libs/radio",
|
||||
"libs/devices",
|
||||
"libs/bluetooth"
|
||||
],
|
||||
"cloud": {
|
||||
"workspace": false,
|
||||
@ -29,8 +29,8 @@
|
||||
"config": {
|
||||
"name": "{0} block",
|
||||
"dependencies": {
|
||||
"microbit": "*",
|
||||
"microbit-radio": "*"
|
||||
"core": "*",
|
||||
"radio": "*"
|
||||
},
|
||||
"description": "",
|
||||
"files": [
|
||||
@ -50,8 +50,8 @@
|
||||
"config": {
|
||||
"name": "{0} bit",
|
||||
"dependencies": {
|
||||
"microbit": "*",
|
||||
"microbit-radio": "*"
|
||||
"core": "*",
|
||||
"radio": "*"
|
||||
},
|
||||
"description": "",
|
||||
"files": [
|
||||
@ -69,7 +69,23 @@
|
||||
"hasHex": true,
|
||||
"deployDrives": "(MICROBIT|MBED)",
|
||||
"driveName": "MICROBIT",
|
||||
"hexMimeType": "application/x-microbit-hex"
|
||||
"hexMimeType": "application/x-microbit-hex",
|
||||
"upgrades": [
|
||||
{
|
||||
"type": "package",
|
||||
"map": {
|
||||
"microbit": "core",
|
||||
"microbit-bluetooth": "bluetooth",
|
||||
"microbit-radio": "radio",
|
||||
"microbit-devices": "devices",
|
||||
"microbit-led": "",
|
||||
"microbit-music": "",
|
||||
"microbit-game": "",
|
||||
"microbit-pins": "",
|
||||
"microbit-serial": ""
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"runtime": {
|
||||
"mathBlocks": true,
|
||||
|
Reference in New Issue
Block a user