@gzl10/nexus-backend 0.16.0 → 0.16.2

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/dist/cli.js CHANGED
@@ -713,7 +713,9 @@ import { exec } from "child_process";
713
713
  import { promisify } from "util";
714
714
  function normalizePluginName(name) {
715
715
  if (name.startsWith("@gzl10/nexus-plugin-")) return name;
716
+ if (name.startsWith("@gzl10/nexus-")) return name.replace("@gzl10/nexus-", PLUGIN_PREFIX);
716
717
  if (name.startsWith("nexus-plugin-")) return `@gzl10/${name}`;
718
+ if (name.startsWith("nexus-")) return `${PLUGIN_PREFIX}${name.replace("nexus-", "")}`;
717
719
  return `${PLUGIN_PREFIX}${name}`;
718
720
  }
719
721
  function shortPluginName(name) {
@@ -11873,7 +11875,8 @@ var init_users_entity = __esm({
11873
11875
  { value: "en", label: { en: "English", es: "Ingl\xE9s" } }
11874
11876
  ],
11875
11877
  nullable: true,
11876
- meta: { sortable: true }
11878
+ meta: { sortable: true },
11879
+ defaultValue: "es"
11877
11880
  }),
11878
11881
  timezone: useSelectField9({
11879
11882
  label: { en: "Timezone", es: "Zona horaria" },