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.
- package/core-entity-heuristics.cjs +14 -1
- package/core-entity-heuristics.mjs +14 -1
- package/index.cjs +1 -1
- package/index.mjs +1 -1
- package/package.json +1 -1
|
@@ -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
|
|
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
|
|
1680
|
+
return 0;
|
|
1681
1681
|
}
|
|
1682
1682
|
const result = await deps.install({
|
|
1683
1683
|
cwd: options.cwd,
|