@jskit-ai/storage-runtime 0.1.152 → 0.1.154
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.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jskit-ai/storage-runtime",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.154",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"test": "node --test"
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"./server/providers/StorageRuntimeServiceProvider": "./src/server/providers/StorageRuntimeServiceProvider.js"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@jskit-ai/kernel": "0.1.
|
|
13
|
+
"@jskit-ai/kernel": "0.1.157",
|
|
14
14
|
"unstorage": "^1.17.5"
|
|
15
15
|
},
|
|
16
16
|
"jskit": {
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
"mutations": {
|
|
60
60
|
"dependencies": {
|
|
61
61
|
"runtime": {
|
|
62
|
-
"@jskit-ai/kernel": "0.1.
|
|
62
|
+
"@jskit-ai/kernel": "0.1.157",
|
|
63
63
|
"unstorage": "^1.17.3"
|
|
64
64
|
},
|
|
65
65
|
"dev": {}
|
|
@@ -7,8 +7,6 @@ const STORAGE_RUNTIME_SERVER_API = Object.freeze({
|
|
|
7
7
|
class StorageRuntimeServiceProvider {
|
|
8
8
|
static id = "runtime.storage";
|
|
9
9
|
|
|
10
|
-
static dependsOn = ["runtime.server"];
|
|
11
|
-
|
|
12
10
|
register(app) {
|
|
13
11
|
if (!app || typeof app.singleton !== "function") {
|
|
14
12
|
throw new Error("StorageRuntimeServiceProvider requires application singleton().");
|