@sonicjs-cms/core 1.0.0-alpha.2 → 1.0.0-alpha.3
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/chunk-BOLQHE4J.cjs +11 -0
- package/dist/chunk-BOLQHE4J.cjs.map +1 -0
- package/dist/chunk-BRC3F4CG.cjs +792 -0
- package/dist/chunk-BRC3F4CG.cjs.map +1 -0
- package/dist/chunk-HD7R6T6I.js +9 -0
- package/dist/chunk-HD7R6T6I.js.map +1 -0
- package/dist/chunk-KRJMGD4E.js +783 -0
- package/dist/chunk-KRJMGD4E.js.map +1 -0
- package/dist/index.cjs +39 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +4 -2
- package/dist/index.d.ts +4 -2
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/dist/routes.cjs +6 -3
- package/dist/routes.cjs.map +1 -1
- package/dist/routes.d.cts +12 -3
- package/dist/routes.d.ts +12 -3
- package/dist/routes.js +1 -5
- package/dist/routes.js.map +1 -1
- package/dist/templates.cjs +34 -3
- package/dist/templates.cjs.map +1 -1
- package/dist/templates.d.cts +137 -5
- package/dist/templates.d.ts +137 -5
- package/dist/templates.js +1 -5
- package/dist/templates.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
// src/routes/index.ts
|
|
4
|
+
var ROUTES_INFO = {
|
|
5
|
+
message: "Routes are application-specific - implement in your application",
|
|
6
|
+
reference: "https://github.com/sonicjs/sonicjs"
|
|
7
|
+
};
|
|
8
|
+
|
|
9
|
+
exports.ROUTES_INFO = ROUTES_INFO;
|
|
10
|
+
//# sourceMappingURL=chunk-BOLQHE4J.cjs.map
|
|
11
|
+
//# sourceMappingURL=chunk-BOLQHE4J.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/routes/index.ts"],"names":[],"mappings":";;;AAYO,IAAM,WAAA,GAAc;AAAA,EACzB,OAAA,EAAS,iEAAA;AAAA,EACT,SAAA,EAAW;AACb","file":"chunk-BOLQHE4J.cjs","sourcesContent":["/**\n * Routes Module Exports\n *\n * Note: HTTP routes are application-specific and should be implemented\n * in the consuming application rather than in the core package.\n *\n * The core package provides the building blocks (middleware, services, types)\n * but each application should define its own routes based on its specific needs.\n *\n * For reference implementations, see the main SonicJS repository.\n */\n\nexport const ROUTES_INFO = {\n message: 'Routes are application-specific - implement in your application',\n reference: 'https://github.com/sonicjs/sonicjs'\n} as const\n"]}
|