@bobfrankston/importgen 0.1.16 → 0.1.18

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 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -63,6 +63,7 @@ Given a `package.json` like:
63
63
  `importgen` produces:
64
64
 
65
65
  ```html
66
+ <!-- Generated by importgen 0.1.14 on Feb 9, 2026, 3:45:12 PM EST -->
66
67
  <script type="importmap">
67
68
  {
68
69
  "imports": {
@@ -74,6 +75,8 @@ Given a `package.json` like:
74
75
  </script>
75
76
  ```
76
77
 
78
+ A timestamp comment is added above the import map showing the version and local date/time. It is updated on each regeneration.
79
+
77
80
  Transitive dependencies are included automatically -- if `my-ui-lib` depends on `color-convert`, it appears in the map too. Circular dependencies are detected and handled.
78
81
 
79
82
  ## Using Imports in the Browser
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bobfrankston/importgen",
3
- "version": "0.1.16",
3
+ "version": "0.1.18",
4
4
  "description": "Generate ES Module import maps from package.json dependencies for native browser module loading",
5
5
  "main": "index.js",
6
6
  "bin": {