fix(core): update

This commit is contained in:
2024-05-08 21:31:31 +02:00
parent 02e68ebb68
commit 435b6e24a1
4 changed files with 444 additions and 1001 deletions

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@serve.zone/spark',
version: '1.0.84',
version: '1.0.85',
description: 'A tool to maintain and configure servers on the base OS level for the Servezone infrastructure.'
}

View File

@ -7,6 +7,9 @@ export class SparkLocalConfig {
constructor(sparkRefArg: Spark) {
this.sparkRef = sparkRefArg;
this.kvStore = new plugins.npmextra.KeyValueStore('custom', 'spark');
this.kvStore = new plugins.npmextra.KeyValueStore({
typeArg: 'userHomeDir',
identityArg: 'spark',
});
}
}