@pure-ds/core 0.5.18 → 0.5.19

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.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@pure-ds/core",
3
3
  "shortname": "pds",
4
- "version": "0.5.18",
4
+ "version": "0.5.19",
5
5
  "description": "Pure Design System - Why develop a Design System when you can generate one?",
6
6
  "repository": {
7
7
  "type": "git",
@@ -348,7 +348,7 @@ export const config = {
348
348
 
349
349
  // Custom component paths
350
350
  mapper: (tag) => {
351
- if (tag.startsWith("my-")) return "/assets/my/\${tag}.js";
351
+ if (tag.startsWith("my-")) return \`/assets/my/\${tag}.js\`;
352
352
 
353
353
  // Return nothing to use PDS default mapping
354
354
  },
@@ -169,7 +169,7 @@ export const config = {
169
169
 
170
170
  // Custom component paths
171
171
  mapper: (tag) => {
172
- if (tag.startsWith("my-")) return "/assets/my/\${tag}.js";
172
+ if (tag.startsWith("my-")) return \`/assets/my/\${tag}.js\`;
173
173
 
174
174
  // Return nothing to use PDS default mapping
175
175
  },