application-typescript 1.0.1 → 1.0.2
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 +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -26,7 +26,7 @@ Run TypeScript in the browser without a bundler — add one `<script>` tag and s
|
|
|
26
26
|
|
|
27
27
|
|
|
28
28
|
<!-- esm.sh application-typescript runner -->
|
|
29
|
-
<script type="module" src="https://esm.sh/application-typescript
|
|
29
|
+
<script type="module" src="https://esm.sh/application-typescript"></script>
|
|
30
30
|
|
|
31
31
|
</body>
|
|
32
32
|
</html>
|
|
@@ -122,7 +122,7 @@ Keep imports acyclic.
|
|
|
122
122
|
|
|
123
123
|
```html
|
|
124
124
|
<!-- esm.sh -->
|
|
125
|
-
<script type="module" src="https://esm.sh/application-typescript
|
|
125
|
+
<script type="module" src="https://esm.sh/application-typescript"></script>
|
|
126
126
|
|
|
127
127
|
<!-- or unpkg -->
|
|
128
128
|
<script type="module" src="https://unpkg.com/application-typescript"></script>
|
|
@@ -214,4 +214,4 @@ npm version patch # or minor / major
|
|
|
214
214
|
npm publish --access public
|
|
215
215
|
```
|
|
216
216
|
|
|
217
|
-
The unversioned `https://esm.sh/application-typescript
|
|
217
|
+
The unversioned `https://esm.sh/application-typescript` URL always resolves to the latest published release.
|
package/package.json
CHANGED