@bspk/ui 1.1.28 → 1.1.29
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/meta-types.ts +0 -1
- package/meta.ts +0 -3
- package/package.json +1 -1
package/meta-types.ts
CHANGED
package/meta.ts
CHANGED
|
@@ -142,8 +142,6 @@ function generateComponentMeta({
|
|
|
142
142
|
name,
|
|
143
143
|
jsDocs,
|
|
144
144
|
}: ComponentFile): ComponentMeta | null {
|
|
145
|
-
const stats = fs.statSync(componentFile);
|
|
146
|
-
|
|
147
145
|
const componentFunctionMatch = content.match(new RegExp(`function ${name}[(<]`));
|
|
148
146
|
|
|
149
147
|
if (!componentFunctionMatch) {
|
|
@@ -190,7 +188,6 @@ function generateComponentMeta({
|
|
|
190
188
|
name,
|
|
191
189
|
slug,
|
|
192
190
|
dependencies,
|
|
193
|
-
modified: stats.mtime.toISOString(),
|
|
194
191
|
usage,
|
|
195
192
|
css,
|
|
196
193
|
hasTouchTarget: css.includes('data-touch-target'),
|