pull/1504/head
Cory LaViska 2023-08-11 11:01:00 -04:00
rodzic 8d617fb98c
commit e80b2c9fb9
1 zmienionych plików z 7 dodań i 5 usunięć

Wyświetl plik

@ -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-', '')}`
}
]
})
]
};