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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. 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@1.0.0"></script>
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@1.0.0"></script>
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@1.0.0` URL always resolves to the latest published release.
217
+ The unversioned `https://esm.sh/application-typescript` URL always resolves to the latest published release.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "application-typescript",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Browser loader: run TypeScript from script[type=application/typescript][src] without a bundler",
5
5
  "type": "module",
6
6
  "main": "./application-typescript.js",