This commit is contained in:
Cory LaViska
2023-08-11 11:01:00 -04:00
parent 8d617fb98c
commit e80b2c9fb9

View File

@@ -1,5 +1,5 @@
import * as path from 'path';
import { customElementVsCodePlugin } from "custom-element-vs-code-integration";
import { customElementVsCodePlugin } from 'custom-element-vs-code-integration';
import { parse } from 'comment-parser';
import { pascalCase } from 'pascal-case';
import commandLineArgs from 'command-line-args';
@@ -194,10 +194,12 @@ export default {
customElementVsCodePlugin({
outdir,
cssFileName: null,
referencesTemplate: (_, tag) => [{
name: "Documentation",
url: `https://shoelace.style/components/${tag.replace('sl-', '')}`
}]
referencesTemplate: (_, tag) => [
{
name: 'Documentation',
url: `https://shoelace.style/components/${tag.replace('sl-', '')}`
}
]
})
]
};