pxt-microbit 4.1.35 → 4.1.36
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +12 -6
- package/built/target.js +35 -35
- package/built/target.json +35 -35
- package/built/targetlight.json +5 -5
- package/built/web/react-common-authcode.css +3 -0
- package/built/web/react-common-skillmap.css +1 -1
- package/built/web/rtlreact-common-skillmap.css +1 -1
- package/built/web/rtlsemantic.css +1 -1
- package/built/web/semantic.css +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -67,26 +67,32 @@ cd pxt-common-packages
|
|
|
67
67
|
npm install
|
|
68
68
|
cd ..
|
|
69
69
|
```
|
|
70
|
-
|
|
70
|
+
|
|
71
|
+
6. Link pxt-common-packages to pxt
|
|
72
|
+
```
|
|
73
|
+
npm link ../pxt
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
7. Clone this repository.
|
|
71
77
|
```
|
|
72
78
|
git clone https://github.com/microsoft/pxt-microbit
|
|
73
79
|
cd pxt-microbit
|
|
74
80
|
```
|
|
75
|
-
|
|
81
|
+
8. Install the PXT command line (add `sudo` for Mac/Linux shells).
|
|
76
82
|
```
|
|
77
83
|
npm install -g pxt
|
|
78
84
|
```
|
|
79
|
-
|
|
85
|
+
9. Install the pxt-microbit dependencies.
|
|
80
86
|
```
|
|
81
87
|
npm install
|
|
82
88
|
```
|
|
83
|
-
|
|
89
|
+
10. Link pxt-microbit back to base pxt repo (add `sudo` for Mac/Linux shells).
|
|
84
90
|
This step is only required if you intend to make changes to pxt and/or
|
|
85
91
|
pxt-common-packages repos. If all you want is serve a local Makecode, you can skip
|
|
86
92
|
this step.
|
|
87
93
|
```
|
|
88
|
-
|
|
89
|
-
|
|
94
|
+
npm link ../pxt
|
|
95
|
+
npm link ../pxt-common-packages
|
|
90
96
|
```
|
|
91
97
|
Note the above command assumes the folder structure of
|
|
92
98
|
```
|