@studiocms/devapps 0.1.0-beta.24 → 0.1.0-beta.25

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.
@@ -1,7 +1,7 @@
1
- import { convertToVanilla, genLogger } from "studiocms/effect";
1
+ import { genLogger, runEffect } from "studiocms/effect";
2
2
  import { AstroAPIContextProvider } from "../effects/WordPressAPI/configs.js";
3
3
  import { WPImporter } from "../effects/wpImporter.js";
4
- const POST = async (context) => await convertToVanilla(
4
+ const POST = async (context) => await runEffect(
5
5
  genLogger("@studiocms/devapps/routes/wp-importer.POST")(function* () {
6
6
  const WP = yield* WPImporter;
7
7
  return yield* WP.runPostEvent.pipe(AstroAPIContextProvider.makeProvide(context));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@studiocms/devapps",
3
- "version": "0.1.0-beta.24",
3
+ "version": "0.1.0-beta.25",
4
4
  "description": "A dedicated CMS for Astro DB. Built from the ground up by the Astro community.",
5
5
  "author": {
6
6
  "name": "withstudiocms",
@@ -54,9 +54,9 @@
54
54
  },
55
55
  "type": "module",
56
56
  "dependencies": {
57
- "astro-integration-kit": "^0.18",
57
+ "astro-integration-kit": "^0.19.0",
58
58
  "cheerio": "^1.1.2",
59
- "turndown": "^7.2.0",
59
+ "turndown": "^7.2.1",
60
60
  "sanitize-html": "^2.17.0"
61
61
  },
62
62
  "devDependencies": {
@@ -66,10 +66,10 @@
66
66
  },
67
67
  "peerDependencies": {
68
68
  "@astrojs/db": "^0.17.1",
69
- "astro": "^5.12.8",
70
- "effect": "^3.17.7",
69
+ "astro": "^5.12.9",
70
+ "effect": "^3.17.9",
71
71
  "vite": "^6.3.4",
72
- "studiocms": "0.1.0-beta.24"
72
+ "studiocms": "0.1.0-beta.25"
73
73
  },
74
74
  "peerDependenciesMeta": {
75
75
  "studiocms": {
@@ -77,8 +77,8 @@
77
77
  }
78
78
  },
79
79
  "scripts": {
80
- "build": "buildkit build 'src/**/*.{ts,astro,css,json,png}'",
81
- "dev": "buildkit dev 'src/**/*.{ts,astro,css,json,png}'",
80
+ "build": "buildkit build 'src/**/*.{ts,astro,css,json,png,d.ts}'",
81
+ "dev": "buildkit dev 'src/**/*.{ts,astro,css,json,png,d.ts}'",
82
82
  "typecheck": "tspc -p tsconfig.tspc.json"
83
83
  }
84
84
  }