From d8d5073542825bb500e4f8b3ebd8495621d69518 Mon Sep 17 00:00:00 2001 From: xion Date: Wed, 19 Feb 2025 06:52:18 +0800 Subject: [PATCH] =?UTF-8?q?store=20=E6=B7=BB=E5=8A=A0Load=E6=A8=A1?= =?UTF-8?q?=E5=9D=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.json | 3 ++- src/web.ts | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) 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, };