@stacksjs/config 0.38.3 → 0.39.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 +11 -0
- package/dist/index.mjs +19 -4
- package/package.json +2 -2
- package/dist/chunks/icons.mjs +0 -1325
- package/dist/chunks/icons2.mjs +0 -1342
package/dist/index.d.ts
CHANGED
|
@@ -119,6 +119,17 @@ declare const cache: {
|
|
|
119
119
|
host: any;
|
|
120
120
|
port: any;
|
|
121
121
|
};
|
|
122
|
+
memcached: {
|
|
123
|
+
driver: string;
|
|
124
|
+
persistent_id: any;
|
|
125
|
+
sasl: any[];
|
|
126
|
+
options: {};
|
|
127
|
+
servers: {
|
|
128
|
+
host: any;
|
|
129
|
+
port: any;
|
|
130
|
+
weight: number;
|
|
131
|
+
}[];
|
|
132
|
+
};
|
|
122
133
|
};
|
|
123
134
|
|
|
124
135
|
export { app, cache, deploy, determineDebugMode, docs, git, hashing, library, services, ui };
|
package/dist/index.mjs
CHANGED
|
@@ -168,7 +168,7 @@ const git = {
|
|
|
168
168
|
"errors",
|
|
169
169
|
"git",
|
|
170
170
|
"lint",
|
|
171
|
-
"
|
|
171
|
+
"x-ray",
|
|
172
172
|
"modules",
|
|
173
173
|
"notifications",
|
|
174
174
|
"objects",
|
|
@@ -279,9 +279,10 @@ const ui = {
|
|
|
279
279
|
trigger: ":stx:",
|
|
280
280
|
classPrefix: "stx-",
|
|
281
281
|
reset: "tailwind",
|
|
282
|
-
icons:
|
|
283
|
-
|
|
284
|
-
"
|
|
282
|
+
icons: ["heroicon-outline", "heroicon-solid"],
|
|
283
|
+
fonts: {
|
|
284
|
+
title: "Mona",
|
|
285
|
+
text: "Hubot"
|
|
285
286
|
}
|
|
286
287
|
};
|
|
287
288
|
|
|
@@ -292,6 +293,20 @@ const cache = {
|
|
|
292
293
|
connection: "cache",
|
|
293
294
|
host: env("REDIS_HOST", "127.0.0.1"),
|
|
294
295
|
port: env("REDIS_PORT", "6379")
|
|
296
|
+
},
|
|
297
|
+
memcached: {
|
|
298
|
+
driver: "memcached",
|
|
299
|
+
persistent_id: env("MEMCACHED_PERSISTENT_ID"),
|
|
300
|
+
sasl: [
|
|
301
|
+
env("MEMCACHED_USERNAME", ""),
|
|
302
|
+
env("MEMCACHED_PASSWORD", "")
|
|
303
|
+
],
|
|
304
|
+
options: {},
|
|
305
|
+
servers: [{
|
|
306
|
+
host: env("MEMCACHED_HOST", "127.0.0.1"),
|
|
307
|
+
port: env("MEMCACHED_PORT", 11211),
|
|
308
|
+
weight: 100
|
|
309
|
+
}]
|
|
295
310
|
}
|
|
296
311
|
};
|
|
297
312
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stacksjs/config",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.39.0",
|
|
5
5
|
"packageManager": "pnpm@7.15.0",
|
|
6
6
|
"description": "The Stacks configuration.",
|
|
7
7
|
"author": "Chris Breuer",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"pnpm": ">=7.15.0"
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|
|
38
|
-
"@stacksjs/utils": "0.
|
|
38
|
+
"@stacksjs/utils": "0.39.0"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"mkdist": "^0.4.0",
|