sprawlify 0.1.3 → 0.1.4

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/dist/index.mjs +2 -3
  2. package/package.json +1 -1
package/dist/index.mjs CHANGED
@@ -10,7 +10,7 @@ import { faker } from "@faker-js/faker";
10
10
  import { cosmiconfig } from "cosmiconfig";
11
11
  import { createMatchPath, loadConfig } from "tsconfig-paths";
12
12
  //#region package.json
13
- var version = "0.1.3";
13
+ var version = "0.1.4";
14
14
  //#endregion
15
15
  //#region src/utils/file-helper.ts
16
16
  const FILE_BACKUP_SUFFIX = ".bak";
@@ -4232,12 +4232,11 @@ const rawConfigSchema = z.object({
4232
4232
  });
4233
4233
  const configSchema = rawConfigSchema.extend({ resolvedPaths: z.object({
4234
4234
  cwd: z.string(),
4235
- tailwindconfig: z.string(),
4235
+ tailwindconfig: z.string().optional(),
4236
4236
  tailwindcss: z.string(),
4237
4237
  utils: z.string(),
4238
4238
  components: z.string(),
4239
4239
  lib: z.string(),
4240
- hooks: z.string(),
4241
4240
  ui: z.string()
4242
4241
  }) });
4243
4242
  //#endregion
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sprawlify",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "A command-line interface for Sprawlify.",
5
5
  "license": "MIT",
6
6
  "author": "sprawlify <npm@sprawlify.com>",