typed.js 2.0.15 → 2.0.16
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 +2 -2
- package/index.d.ts +4 -0
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -16,7 +16,7 @@ Typed.js is a library that types. Enter in any string, and watch it type at the
|
|
|
16
16
|
### CDN
|
|
17
17
|
|
|
18
18
|
```html
|
|
19
|
-
<script src="https://unpkg.com/typed.js@2.0.
|
|
19
|
+
<script src="https://unpkg.com/typed.js@2.0.16/dist/typed.umd.js"></script>
|
|
20
20
|
```
|
|
21
21
|
|
|
22
22
|
For use directly in the browser via `<script>` tag:
|
|
@@ -26,7 +26,7 @@ For use directly in the browser via `<script>` tag:
|
|
|
26
26
|
<span id="element"></span>
|
|
27
27
|
|
|
28
28
|
<!-- Load library from the CDN -->
|
|
29
|
-
<script src="https://unpkg.com/typed.js@2.0.
|
|
29
|
+
<script src="https://unpkg.com/typed.js@2.0.16/dist/typed.umd.js"></script>
|
|
30
30
|
|
|
31
31
|
<!-- Setup and start animation! -->
|
|
32
32
|
<script>
|
package/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "typed.js",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.16",
|
|
4
4
|
"homepage": "https://github.com/mattboldt/typed.js",
|
|
5
5
|
"repository": "https://github.com/mattboldt/typed.js",
|
|
6
6
|
"license": "MIT",
|
|
@@ -29,6 +29,7 @@
|
|
|
29
29
|
},
|
|
30
30
|
"scripts": {
|
|
31
31
|
"build": "microbundle --name=Typed",
|
|
32
|
-
"dev": "microbundle --name=Typed watch"
|
|
32
|
+
"dev": "microbundle --name=Typed watch",
|
|
33
|
+
"diff": "git diff -- ':^docs'"
|
|
33
34
|
}
|
|
34
35
|
}
|