application-typescript 1.0.0 → 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 +4 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -121,7 +121,11 @@ Keep imports acyclic.
121
121
  ### Runner
122
122
 
123
123
  ```html
124
+ <!-- esm.sh -->
124
125
  <script type="module" src="https://esm.sh/application-typescript"></script>
126
+
127
+ <!-- or unpkg -->
128
+ <script type="module" src="https://unpkg.com/application-typescript"></script>
125
129
  ```
126
130
 
127
131
  Must come **after** all `application/typescript` markers so the DOM query sees them.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "application-typescript",
3
- "version": "1.0.0",
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",