clivly 0.3.0-next.3 → 0.3.0-next.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.
@@ -22,7 +22,20 @@ const TABLE_PATTERNS = [
22
22
  "attendees",
23
23
  "people",
24
24
  "members",
25
- "contacts"
25
+ "contacts",
26
+ "students",
27
+ "pupils",
28
+ "learners",
29
+ "patients",
30
+ "subscribers",
31
+ "donors",
32
+ "guests",
33
+ "residents",
34
+ "tenants",
35
+ "applicants",
36
+ "candidates",
37
+ "leads",
38
+ "prospects"
26
39
  ]
27
40
  },
28
41
  {
@@ -21,7 +21,20 @@ const TABLE_PATTERNS = [
21
21
  "attendees",
22
22
  "people",
23
23
  "members",
24
- "contacts"
24
+ "contacts",
25
+ "students",
26
+ "pupils",
27
+ "learners",
28
+ "patients",
29
+ "subscribers",
30
+ "donors",
31
+ "guests",
32
+ "residents",
33
+ "tenants",
34
+ "applicants",
35
+ "candidates",
36
+ "leads",
37
+ "prospects"
25
38
  ]
26
39
  },
27
40
  {
package/index.cjs CHANGED
@@ -1678,7 +1678,7 @@ async function scaffold(options, deps, plan) {
1678
1678
  if (options.dryRun) {
1679
1679
  out(`\nWould install (${pm}): ${packages.join(", ")}\n`);
1680
1680
  previewMutations(deps, mutations);
1681
- return plan.contactDetected ? 0 : 1;
1681
+ return 0;
1682
1682
  }
1683
1683
  const result = await deps.install({
1684
1684
  cwd: options.cwd,
package/index.mjs CHANGED
@@ -1677,7 +1677,7 @@ async function scaffold(options, deps, plan) {
1677
1677
  if (options.dryRun) {
1678
1678
  out(`\nWould install (${pm}): ${packages.join(", ")}\n`);
1679
1679
  previewMutations(deps, mutations);
1680
- return plan.contactDetected ? 0 : 1;
1680
+ return 0;
1681
1681
  }
1682
1682
  const result = await deps.install({
1683
1683
  cwd: options.cwd,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clivly",
3
- "version": "0.3.0-next.3",
3
+ "version": "0.3.0-next.4",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "description": "Clivly CLI — scaffold a CRM into your app (clivly init).",