Skip to content

Commit

Permalink
Fix css:install not adding javascript_importmap_tags
Browse files Browse the repository at this point in the history
  • Loading branch information
lazaronixon committed Jan 24, 2025
1 parent 4249596 commit bce3cb3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## [Unreleased]

## [1.0.3] - 2025-01-24
- Fix css:install not adding javascript_importmap_tags

## [1.0.2] - 2025-01-24
- Import external css dependencies from esm.sh

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,11 @@
<%%= stylesheet_link_tag <%= style_link_target %>, "data-turbo-track": "reload" %>
<%%= stylesheet_link_tag "css-zero/utilities", "data-turbo-track": "reload" %>
<%- end -%>
<%- if importmaps? -%>
<%%= javascript_importmap_tags %>
<%- else -%>
<%%= javascript_include_tag "application", "data-turbo-track": "reload", type: "module" %>
<%- end -%>
</head>

<body class="header-layout">
Expand Down

0 comments on commit bce3cb3

Please sign in to comment.