@ronin/compiler 0.14.9-leo-ron-1099-1-experimental-345 → 0.14.10-leo-ron-1099-1-experimental-346
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/index.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -1213,7 +1213,7 @@ var modelAttributes = [
|
|
1213
1213
|
["pluralSlug", "slug", pluralize],
|
1214
1214
|
["name", "slug", slugToName],
|
1215
1215
|
["pluralName", "pluralSlug", slugToName],
|
1216
|
-
["idPrefix", "slug", (slug) => slug.slice(0, 3)],
|
1216
|
+
["idPrefix", "slug", (slug) => slug.slice(0, 3).toLowerCase()],
|
1217
1217
|
["table", "pluralSlug", convertToSnakeCase]
|
1218
1218
|
];
|
1219
1219
|
var getModelIdentifier = () => {
|
package/package.json
CHANGED