notionsoft-ui 1.0.25 → 1.0.26

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.
Files changed (2) hide show
  1. package/cli/index.cjs +2 -1
  2. package/package.json +1 -1
package/cli/index.cjs CHANGED
@@ -208,7 +208,8 @@ program
208
208
  file === "type.ts" ||
209
209
  file.endsWith("-data.ts") ||
210
210
  file.endsWith(".stories.tsx") ||
211
- (file.startsWith("use-") && file.endsWith(".ts"))
211
+ (file.startsWith("use-") && file.endsWith(".ts")) ||
212
+ file === "utils.ts"
212
213
  )
213
214
  return;
214
215
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "notionsoft-ui",
3
- "version": "1.0.25",
3
+ "version": "1.0.26",
4
4
  "description": "A React UI component installer (shadcn-style). Installs components directly into your project.",
5
5
  "bin": {
6
6
  "notionsoft-ui": "./cli/index.cjs"