pxt-microbit 4.1.34 → 4.1.37

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 CHANGED
@@ -67,26 +67,32 @@ cd pxt-common-packages
67
67
  npm install
68
68
  cd ..
69
69
  ```
70
- 6. Clone this repository.
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
- 7. Install the PXT command line (add `sudo` for Mac/Linux shells).
81
+ 8. Install the PXT command line (add `sudo` for Mac/Linux shells).
76
82
  ```
77
83
  npm install -g pxt
78
84
  ```
79
- 8. Install the pxt-microbit dependencies.
85
+ 9. Install the pxt-microbit dependencies.
80
86
  ```
81
87
  npm install
82
88
  ```
83
- 8. Link pxt-microbit back to base pxt repo (add `sudo` for Mac/Linux shells).
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
- pxt link ../pxt
89
- pxt link ../pxt-common-packages
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
  ```