@hywax/cms 1.10.0 → 1.10.1
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/.nuxt/cms/config.ts +1 -1
- package/dist/module.json +1 -1
- package/dist/module.mjs +2 -2
- package/package.json +1 -1
package/.nuxt/cms/config.ts
CHANGED
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -6,7 +6,7 @@ import { snakeCase, kebabCase } from 'scule';
|
|
|
6
6
|
import { readFile, writeFile } from 'node:fs/promises';
|
|
7
7
|
|
|
8
8
|
const name = "@hywax/cms";
|
|
9
|
-
const version = "1.10.
|
|
9
|
+
const version = "1.10.1";
|
|
10
10
|
|
|
11
11
|
function createContext(options, nuxt) {
|
|
12
12
|
const { resolve } = createResolver(import.meta.url);
|
|
@@ -522,7 +522,7 @@ export {}
|
|
|
522
522
|
name: options.name,
|
|
523
523
|
formats: options.formats
|
|
524
524
|
};
|
|
525
|
-
return `const cmsConfig = ${JSON.stringify(config, null, 2)}
|
|
525
|
+
return `const cmsConfig = ${JSON.stringify(config, null, 2)}
|
|
526
526
|
|
|
527
527
|
export const getCmsConfig = () => cmsConfig`;
|
|
528
528
|
}
|