Skip to content

Commit 7431273

Browse files
chore: declared types and version bumped
1 parent 7c8fb9c commit 7431273

File tree

6 files changed

+9
-4
lines changed

6 files changed

+9
-4
lines changed

dist/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@gluestack/glue-plugin-backend-engine",
3-
"version": "0.0.39",
3+
"version": "0.0.40",
44
"description": "Create an Application using GlueStack framework",
55
"repository": {
66
"type": "git",

dist/src/index.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import IInstance from "@gluestack/framework/types/plugin/interface/IInstance";
44
import ILifeCycle from "@gluestack/framework/types/plugin/interface/ILifeCycle";
55
import IManagesInstances from "@gluestack/framework/types/plugin/interface/IManagesInstances";
66
import IGlueStorePlugin from "@gluestack/framework/types/store/interface/IGluePluginStore";
7+
export { EnginePlugin } from "./plugin";
78
export declare class GlueStackPlugin implements IPlugin, IManagesInstances, ILifeCycle {
89
app: IApp;
910
instances: IInstance[];

dist/src/index.js

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

dist/src/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@gluestack/glue-plugin-backend-engine",
3-
"version": "0.0.39",
3+
"version": "0.0.40",
44
"description": "Create an Application using GlueStack framework",
55
"repository": {
66
"type": "git",

src/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ import { addMainCron } from "./helpers/add-main-cron";
2121
import { addMainRouter } from "./helpers/add-main-router";
2222
import { addMainEvents } from "./helpers/add-main-events";
2323

24+
export { EnginePlugin } from "./plugin";
25+
2426
// Do not edit the name of this class
2527
export class GlueStackPlugin implements IPlugin, IManagesInstances, ILifeCycle {
2628
app: IApp;

0 commit comments

Comments
 (0)