diff --git a/package.json b/package.json index c3585e1..438b951 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@kevisual/store", - "version": "0.0.1-alpha.10", + "version": "0.0.1", "main": "dist/store.js", "module": "dist/store.js", "types": "dist/store.d.ts", @@ -23,6 +23,7 @@ "license": "ISC", "description": "", "devDependencies": { + "@kevisual/load": "workspace:*", "@kevisual/types": "link:../types", "@rollup/plugin-commonjs": "^28.0.1", "@rollup/plugin-node-resolve": "^15.3.0", diff --git a/src/web.ts b/src/web.ts index 44b98f4..b659f00 100644 --- a/src/web.ts +++ b/src/web.ts @@ -3,10 +3,12 @@ import * as WebEnv from './web-env.ts'; import { nanoid } from 'nanoid'; import * as PathToREgexp from 'path-to-regexp'; +import * as Load from '@kevisual/load/browser'; export const WebModule = { Page, WebEnv, nanoid, PathToREgexp, + Load, };