Skip to content

Commit 0f9a1e8

Browse files
committed
Update packages
1 parent b2424fb commit 0f9a1e8

File tree

3 files changed

+14
-15
lines changed

3 files changed

+14
-15
lines changed

package-lock.json

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
"@module-federation/enhanced": "^0.19.1",
2121
"@module-federation/node": "^2.7.17",
2222
"@module-federation/runtime": "^0.19.1",
23-
"@pulse-editor/react-api": "^0.1.1-alpha.36",
24-
"@pulse-editor/shared-utils": "^0.1.1-alpha.36",
23+
"@pulse-editor/react-api": "^0.1.1-alpha.37",
24+
"@pulse-editor/shared-utils": "^0.1.1-alpha.37",
2525
"cors": "^2.8.5",
2626
"dotenv": "^17.2.2",
2727
"express": "^5.1.0",

pulse.config.ts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,18 @@
1-
import { ExtensionConfig, ExtensionTypeEnum } from "@pulse-editor/shared-utils";
1+
import { AppConfig, AppTypeEnum } from "@pulse-editor/shared-utils";
22
import packageJson from "./package.json" with { type: "json" };
33

44
/**
55
* Pulse Editor Extension Config
66
*
77
*/
8-
const config: ExtensionConfig = {
8+
const config: AppConfig = {
99
// Do not use hyphen character '-' in the id.
1010
// The id should be the same as the package name in package.json.
1111
id: packageJson.name,
1212
displayName: packageJson.displayName,
1313
description: packageJson.description,
1414
version: packageJson.version,
15-
extensionType: ExtensionTypeEnum.FileView,
16-
fileTypes: ["txt", "json", "py", "cpp", "c", "tsx", "ts", "js", "jsx"],
15+
appType: AppTypeEnum.FileView,
1716
visibility: packageJson["pulse-editor-marketplace"].visibility,
1817
recommendedHeight: 640,
1918
recommendedWidth: 360,

0 commit comments

Comments
 (0)