pxt-core 9.3.5 → 9.3.7
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/built/pxt.js +11 -1
- package/built/pxtcompiler.js +1 -1
- package/built/pxtlib.d.ts +1 -0
- package/built/pxtlib.js +10 -0
- package/built/pxtrunner.d.ts +1 -0
- package/built/pxtrunner.js +12 -1
- package/built/target.js +1 -1
- package/built/web/main.js +1 -1
- package/built/web/pxtapp.js +1 -1
- package/built/web/pxtcompiler.js +1 -1
- package/built/web/pxtembed.js +2 -2
- package/built/web/pxtlib.js +1 -1
- package/built/web/pxtrunner.js +1 -1
- package/built/web/pxtworker.js +1 -1
- package/common-docs/extensions.md +10 -8
- package/package.json +1 -1
|
@@ -2,17 +2,19 @@
|
|
|
2
2
|
|
|
3
3
|
## #gallery
|
|
4
4
|
|
|
5
|
-
## Using Extensions
|
|
5
|
+
## Using Extensions #using
|
|
6
6
|
|
|
7
|
-
In the web editor, click on
|
|
8
|
-
The Blocks and JavaScript definitions
|
|
7
|
+
In the web editor, click on the **Settings** (the ⚙️ symbol) menu and then choose **Extensions** to search and add extensions to the project.
|
|
8
|
+
The Blocks and any other JavaScript definitions from the extension are automatically loaded in the editor.
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
### ~ reminder
|
|
11
11
|
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
## ~ hint
|
|
12
|
+
#### Extensions were "Packages"
|
|
15
13
|
|
|
16
14
|
**Extensions** were previously called **Packages** in MakeCode.
|
|
17
15
|
|
|
18
|
-
|
|
16
|
+
### ~
|
|
17
|
+
|
|
18
|
+
## Custom extensions #custom
|
|
19
|
+
|
|
20
|
+
The [Build Your Own Extension](https://makecode.com/extensions/getting-started) manual is for advanced users who want to publish their own extension.
|