@stacksjs/config 0.39.0 → 0.40.0
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/dist/index.d.ts +8 -0
- package/dist/index.mjs +8 -0
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -130,6 +130,14 @@ declare const cache: {
|
|
|
130
130
|
weight: number;
|
|
131
131
|
}[];
|
|
132
132
|
};
|
|
133
|
+
dynamodb: {
|
|
134
|
+
driver: string;
|
|
135
|
+
key: any;
|
|
136
|
+
secret: any;
|
|
137
|
+
region: any;
|
|
138
|
+
table: any;
|
|
139
|
+
endpoint: any;
|
|
140
|
+
};
|
|
133
141
|
};
|
|
134
142
|
|
|
135
143
|
export { app, cache, deploy, determineDebugMode, docs, git, hashing, library, services, ui };
|
package/dist/index.mjs
CHANGED
|
@@ -307,6 +307,14 @@ const cache = {
|
|
|
307
307
|
port: env("MEMCACHED_PORT", 11211),
|
|
308
308
|
weight: 100
|
|
309
309
|
}]
|
|
310
|
+
},
|
|
311
|
+
dynamodb: {
|
|
312
|
+
driver: "dynamodb",
|
|
313
|
+
key: env("AWS_ACCESS_KEY_ID"),
|
|
314
|
+
secret: env("AWS_SECRET_ACCESS_KEY"),
|
|
315
|
+
region: env("AWS_DEFAULT_REGION", "us-east-1"),
|
|
316
|
+
table: env("DYNAMODB_CACHE_TABLE", "cache"),
|
|
317
|
+
endpoint: env("DYNAMODB_ENDPOINT")
|
|
310
318
|
}
|
|
311
319
|
};
|
|
312
320
|
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stacksjs/config",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.
|
|
5
|
-
"packageManager": "pnpm@7.
|
|
4
|
+
"version": "0.40.0",
|
|
5
|
+
"packageManager": "pnpm@7.16.0",
|
|
6
6
|
"description": "The Stacks configuration.",
|
|
7
7
|
"author": "Chris Breuer",
|
|
8
8
|
"license": "MIT",
|
|
@@ -32,10 +32,10 @@
|
|
|
32
32
|
],
|
|
33
33
|
"engines": {
|
|
34
34
|
"node": ">=v18.12.1",
|
|
35
|
-
"pnpm": ">=7.
|
|
35
|
+
"pnpm": ">=7.16.0"
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|
|
38
|
-
"@stacksjs/utils": "0.
|
|
38
|
+
"@stacksjs/utils": "0.40.0"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"mkdist": "^0.4.0",
|