@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 CHANGED
@@ -34,7 +34,6 @@ export type TypeProperty = {
34
34
  export type ComponentMeta = BaseMeta & {
35
35
  slug: string;
36
36
  dependencies: string[];
37
- modified: string;
38
37
  css: string;
39
38
  hasTouchTarget: boolean;
40
39
  usage?: {
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'),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bspk/ui",
3
- "version": "1.1.28",
3
+ "version": "1.1.29",
4
4
  "license": "CC-BY-4.0",
5
5
  "type": "module",
6
6
  "files": [