create-mercato-app 0.5.1-develop.3032.01699048cb → 0.5.1-develop.3036.f02c281f23
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 +5 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -315,6 +315,7 @@ import { fileURLToPath } from "node:url";
|
|
|
315
315
|
|
|
316
316
|
// src/lib/starter-presets.ts
|
|
317
317
|
var CORE = "@open-mercato/core";
|
|
318
|
+
var EVENTS = "@open-mercato/events";
|
|
318
319
|
var EMPTY_MODULES = [
|
|
319
320
|
{ id: "auth", from: CORE },
|
|
320
321
|
{ id: "directory", from: CORE },
|
|
@@ -351,7 +352,10 @@ var STARTER_PRESETS = {
|
|
|
351
352
|
add: [
|
|
352
353
|
{ id: "customers", from: CORE },
|
|
353
354
|
{ id: "dictionaries", from: CORE },
|
|
354
|
-
{ id: "feature_toggles", from: CORE }
|
|
355
|
+
{ id: "feature_toggles", from: CORE },
|
|
356
|
+
{ id: "notifications", from: CORE },
|
|
357
|
+
{ id: "dashboards", from: CORE },
|
|
358
|
+
{ id: "events", from: EVENTS }
|
|
355
359
|
]
|
|
356
360
|
},
|
|
357
361
|
ui: { startPageVariant: "crm", hideDemoLinks: true },
|