Skip to content

Commit

Permalink
perf: update to support individual versions
Browse files Browse the repository at this point in the history
This commit updates the content templates to support design-tokens and
WCSS version injection individually.

Changes to be committed:
modified:   componentDocs/partials/usage/bundleUse.md
modified:   componentDocs/partials/usage/bundleUseModBrowsers.md
  • Loading branch information
blackfalcon committed Feb 7, 2024
1 parent f396779 commit 768a0e7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions componentDocs/partials/usage/bundleUse.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
```html
<!-- **NOTE:** Be sure to replace `@latest` in the URL with the version of the asset you want. @latest is NOT aware of any MAJOR releases, use at your own risk. -->

<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@aurodesignsystem/design-tokens@[Version]/dist/tokens/CSSCustomProperties.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@aurodesignsystem/webcorestylesheets@[Version]/dist/bundled/essentials.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@aurodesignsystem/design-tokens@[dtVersion]/dist/tokens/CSSCustomProperties.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@aurodesignsystem/webcorestylesheets@[wcssVersion]/dist/bundled/essentials.css" />

<script src="https://cdn.jsdelivr.net/npm/[npm]/[namespace]-[name]@[Version]/dist/[namespace]-[name]__bundled.js" type="module"></script>
```
4 changes: 2 additions & 2 deletions componentDocs/partials/usage/bundleUseModBrowsers.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
```html
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@aurodesignsystem/design-tokens@[Version]/dist/tokens/CSSCustomProperties.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@aurodesignsystem/webcorestylesheets@[Version]/dist/bundled/essentials.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@aurodesignsystem/design-tokens@[dtVersion]/dist/tokens/CSSCustomProperties.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@aurodesignsystem/webcorestylesheets@[wcssVersion]/dist/bundled/essentials.css" />

<script src="https://cdn.jsdelivr.net/[npm]/[namespace]-[name]@[Version]/dist/[namespace]-[name]__bundled.js" type="module"></script>
```

0 comments on commit 768a0e7

Please sign in to comment.