Skip to content

Commit 8f5c109

Browse files
committed
cleanup
1 parent 6cd2805 commit 8f5c109

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ console.log('files:', files)
4444
You can include the latest release via CDN:
4545

4646
```html
47-
<script src="https://cdn.jsdelivr.net/npm/micropython-ctl@1.3.0/dist-browser/main.js"></script>
47+
<script src="https://cdn.jsdelivr.net/npm/micropython-ctl@latest/dist-browser/main.js"></script>
4848
```
4949

5050
And then use it like this:
@@ -160,12 +160,12 @@ Maybe (not sure it's needed, don't rush into implementing):
160160
# make sure all is committed in git
161161
git status
162162

163-
# create a git tag
164-
git tag v1.4.0
163+
# update version number and create a git tag
164+
yarn version
165165

166-
# create a build
166+
# create the builds for node and browser
167167
./build.sh
168168

169169
# publish
170-
yarn publish --no-git-tag-version
170+
yarn publish
171171
```

examples/web-example.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
1010

1111
<!-- MicroPythonCtl from CDN (latest npm release) -->
12-
<script src="https://cdn.jsdelivr.net/npm/micropython-ctl@1.3.0/dist-browser/main.js"></script>
12+
<script src="https://cdn.jsdelivr.net/npm/micropython-ctl@latest/dist-browser/main.js"></script>
1313

1414
<!-- MicroPythonCtl from local (webpack build) -->
1515
<!-- <script src="../dist-browser/main.js"></script> -->

0 commit comments

Comments
 (0)