@shell-shock/plugin-upgrade 0.1.5 → 0.1.7

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.mjs CHANGED
@@ -16,10 +16,16 @@ const plugin = (options = {}) => {
16
16
  name: "shell-shock:upgrade",
17
17
  config() {
18
18
  this.debug("Providing default configuration for the Shell Shock `upgrade` plugin.");
19
- return { upgrade: defu(options, {
20
- type: "confirm",
21
- staleTime: 2160 * 60 * 1e3
22
- }) };
19
+ return {
20
+ upgrade: defu(options, {
21
+ type: "confirm",
22
+ staleTime: 2160 * 60 * 1e3
23
+ }),
24
+ env: {
25
+ types: "@shell-shock/plugin-upgrade/types/env#ShellShockUpgradePluginEnv",
26
+ validate: false
27
+ }
28
+ };
23
29
  },
24
30
  configResolved() {
25
31
  this.debug("Adding the CLI upgrade commands to the application context.");
@@ -1 +1 @@
1
- {"version":3,"file":"index.mjs","names":["render","getAppTitle","joinPaths","defu","UpgradeBuiltin","UpgradeCommand","plugin","options","name","config","debug","upgrade","type","staleTime","configResolved","inputs","some","input","id","info","push","alias","path","segments","title","description","entry","file","entryPath","isVirtual","prepare","_$createComponent"],"sources":["../src/index.tsx"],"sourcesContent":["/* -------------------------------------------------------------------\n\n ⚡ Storm Software - Shell Shock\n\n This code was released as part of the Shell Shock project. Shell Shock\n is maintained by Storm Software under the Apache-2.0 license, and is\n free for commercial and private use. For more information, please visit\n our licensing page at https://stormsoftware.com/licenses/projects/shell-shock.\n\n Website: https://stormsoftware.com\n Repository: https://github.com/storm-software/shell-shock\n Documentation: https://docs.stormsoftware.com/projects/shell-shock\n Contact: https://stormsoftware.com/contact\n\n SPDX-License-Identifier: Apache-2.0\n\n ------------------------------------------------------------------- */\n\nimport { render } from \"@powerlines/plugin-alloy/render\";\nimport { getAppTitle } from \"@shell-shock/core/plugin-utils\";\nimport { joinPaths } from \"@stryke/path/join\";\nimport defu from \"defu\";\nimport type { Plugin } from \"powerlines\";\nimport { UpgradeBuiltin, UpgradeCommand } from \"./components\";\nimport type {\n UpgradePluginContext,\n UpgradePluginOptions\n} from \"./types/plugin\";\n\n/**\n * The Upgrade - Shell Shock plugin to add version check functionality and upgrade commands to a Shell Shock application.\n */\nexport const plugin = <\n TContext extends UpgradePluginContext = UpgradePluginContext\n>(\n options: UpgradePluginOptions = {}\n): Plugin<TContext> => {\n return {\n name: \"shell-shock:upgrade\",\n config() {\n this.debug(\n \"Providing default configuration for the Shell Shock `upgrade` plugin.\"\n );\n\n return {\n upgrade: defu(options, {\n type: \"confirm\",\n staleTime: 36 * 60 * 60 * 1000 // 36 hours\n })\n };\n },\n configResolved() {\n this.debug(\"Adding the CLI upgrade commands to the application context.\");\n\n this.inputs ??= [];\n if (this.inputs.some(input => input.id === \"upgrade\")) {\n this.info(\n \"The `upgrade` command already exists in the commands list. If you would like the upgrade command to be managed by the `@shell-shock/plugin-upgrade` package, please remove or rename the command.\"\n );\n } else {\n this.inputs.push({\n id: \"upgrade\",\n name: \"upgrade\",\n alias: [\"up\", \"update\"],\n path: \"upgrade\",\n segments: [\"upgrade\"],\n title: \"Upgrade\",\n description: `A command for checking and upgrading the version of the ${getAppTitle(\n this\n )}.`,\n entry: {\n file: joinPaths(this.entryPath, \"upgrade\", \"command.ts\"),\n input: {\n file: joinPaths(this.entryPath, \"upgrade\", \"command.ts\")\n }\n },\n isVirtual: false\n });\n }\n },\n async prepare() {\n this.debug(\n \"Rendering upgrade built-in and command modules for the Shell Shock `upgrade` plugin.\"\n );\n\n return render(\n this,\n <>\n <UpgradeBuiltin />\n <UpgradeCommand />\n </>\n );\n }\n };\n};\n\nexport default plugin;\n"],"mappings":";;;;;;;;;;;;;AAgCA,MAAaM,UAGXC,UAAgC,EAAE,KACb;AACrB,QAAO;EACLC,MAAM;EACNC,SAAS;AACP,QAAKC,MACH,wEACD;AAED,UAAO,EACLC,SAASR,KAAKI,SAAS;IACrBK,MAAM;IACNC,WAAW,OAAU,KAAK;IAC3B,CAAA,EACF;;EAEHC,iBAAiB;AACf,QAAKJ,MAAM,8DAA8D;AAEzE,QAAKK,WAAW,EAAE;AAClB,OAAI,KAAKA,OAAOC,MAAKC,UAASA,MAAMC,OAAO,UAAU,CACnD,MAAKC,KACH,oMACD;OAED,MAAKJ,OAAOK,KAAK;IACfF,IAAI;IACJV,MAAM;IACNa,OAAO,CAAC,MAAM,SAAS;IACvBC,MAAM;IACNC,UAAU,CAAC,UAAU;IACrBC,OAAO;IACPC,aAAa,2DAA2DxB,YACtE,KACD,CAAA;IACDyB,OAAO;KACLC,MAAMzB,UAAU,KAAK0B,WAAW,WAAW,aAAa;KACxDX,OAAO,EACLU,MAAMzB,UAAU,KAAK0B,WAAW,WAAW,aAAY,EACzD;KACD;IACDC,WAAW;IACZ,CAAC;;EAGN,MAAMC,UAAU;AACd,QAAKpB,MACH,uFACD;AAED,UAAOV,OACL,MAAI,CAAA+B,gBAED3B,gBAAc,EAAA,CAAA,EAAA2B,gBACd1B,gBAAc,EAAA,CAAA,CAEnB,CAAC;;EAEJ;;AAGH,kBAAeC"}
1
+ {"version":3,"file":"index.mjs","names":["render","getAppTitle","joinPaths","defu","UpgradeBuiltin","UpgradeCommand","plugin","options","name","config","debug","upgrade","type","staleTime","env","types","validate","configResolved","inputs","some","input","id","info","push","alias","path","segments","title","description","entry","file","entryPath","isVirtual","prepare","_$createComponent"],"sources":["../src/index.tsx"],"sourcesContent":["/* -------------------------------------------------------------------\n\n ⚡ Storm Software - Shell Shock\n\n This code was released as part of the Shell Shock project. Shell Shock\n is maintained by Storm Software under the Apache-2.0 license, and is\n free for commercial and private use. For more information, please visit\n our licensing page at https://stormsoftware.com/licenses/projects/shell-shock.\n\n Website: https://stormsoftware.com\n Repository: https://github.com/storm-software/shell-shock\n Documentation: https://docs.stormsoftware.com/projects/shell-shock\n Contact: https://stormsoftware.com/contact\n\n SPDX-License-Identifier: Apache-2.0\n\n ------------------------------------------------------------------- */\n\nimport { render } from \"@powerlines/plugin-alloy/render\";\nimport { getAppTitle } from \"@shell-shock/core/plugin-utils\";\nimport { joinPaths } from \"@stryke/path/join\";\nimport defu from \"defu\";\nimport type { Plugin } from \"powerlines\";\nimport { UpgradeBuiltin, UpgradeCommand } from \"./components\";\nimport type {\n UpgradePluginContext,\n UpgradePluginOptions\n} from \"./types/plugin\";\n\n/**\n * The Upgrade - Shell Shock plugin to add version check functionality and upgrade commands to a Shell Shock application.\n */\nexport const plugin = <\n TContext extends UpgradePluginContext = UpgradePluginContext\n>(\n options: UpgradePluginOptions = {}\n): Plugin<TContext> => {\n return {\n name: \"shell-shock:upgrade\",\n config() {\n this.debug(\n \"Providing default configuration for the Shell Shock `upgrade` plugin.\"\n );\n\n return {\n upgrade: defu(options, {\n type: \"confirm\",\n staleTime: 36 * 60 * 60 * 1000 // 36 hours\n }),\n env: {\n types:\n \"@shell-shock/plugin-upgrade/types/env#ShellShockUpgradePluginEnv\",\n validate: false\n }\n };\n },\n configResolved() {\n this.debug(\"Adding the CLI upgrade commands to the application context.\");\n\n this.inputs ??= [];\n if (this.inputs.some(input => input.id === \"upgrade\")) {\n this.info(\n \"The `upgrade` command already exists in the commands list. If you would like the upgrade command to be managed by the `@shell-shock/plugin-upgrade` package, please remove or rename the command.\"\n );\n } else {\n this.inputs.push({\n id: \"upgrade\",\n name: \"upgrade\",\n alias: [\"up\", \"update\"],\n path: \"upgrade\",\n segments: [\"upgrade\"],\n title: \"Upgrade\",\n description: `A command for checking and upgrading the version of the ${getAppTitle(\n this\n )}.`,\n entry: {\n file: joinPaths(this.entryPath, \"upgrade\", \"command.ts\"),\n input: {\n file: joinPaths(this.entryPath, \"upgrade\", \"command.ts\")\n }\n },\n isVirtual: false\n });\n }\n },\n async prepare() {\n this.debug(\n \"Rendering upgrade built-in and command modules for the Shell Shock `upgrade` plugin.\"\n );\n\n return render(\n this,\n <>\n <UpgradeBuiltin />\n <UpgradeCommand />\n </>\n );\n }\n };\n};\n\nexport default plugin;\n"],"mappings":";;;;;;;;;;;;;AAgCA,MAAaM,UAGXC,UAAgC,EAAE,KACb;AACrB,QAAO;EACLC,MAAM;EACNC,SAAS;AACP,QAAKC,MACH,wEACD;AAED,UAAO;IACLC,SAASR,KAAKI,SAAS;KACrBK,MAAM;KACNC,WAAW,OAAU,KAAK;KAC3B,CAAC;IACFC,KAAK;KACHC,OACE;KACFC,UAAU;KACZ;IACD;;EAEHC,iBAAiB;AACf,QAAKP,MAAM,8DAA8D;AAEzE,QAAKQ,WAAW,EAAE;AAClB,OAAI,KAAKA,OAAOC,MAAKC,UAASA,MAAMC,OAAO,UAAU,CACnD,MAAKC,KACH,oMACD;OAED,MAAKJ,OAAOK,KAAK;IACfF,IAAI;IACJb,MAAM;IACNgB,OAAO,CAAC,MAAM,SAAS;IACvBC,MAAM;IACNC,UAAU,CAAC,UAAU;IACrBC,OAAO;IACPC,aAAa,2DAA2D3B,YACtE,KACD,CAAA;IACD4B,OAAO;KACLC,MAAM5B,UAAU,KAAK6B,WAAW,WAAW,aAAa;KACxDX,OAAO,EACLU,MAAM5B,UAAU,KAAK6B,WAAW,WAAW,aAAY,EACzD;KACD;IACDC,WAAW;IACZ,CAAC;;EAGN,MAAMC,UAAU;AACd,QAAKvB,MACH,uFACD;AAED,UAAOV,OACL,MAAI,CAAAkC,gBAED9B,gBAAc,EAAA,CAAA,EAAA8B,gBACd7B,gBAAc,EAAA,CAAA,CAEnB,CAAC;;EAEJ;;AAGH,kBAAeC"}
File without changes
@@ -0,0 +1,14 @@
1
+ import { ShellShockEnv } from "@shell-shock/core/types/env";
2
+
3
+ //#region src/types/env.d.ts
4
+ interface ShellShockUpgradePluginEnv extends ShellShockEnv {
5
+ /**
6
+ * An environment variable that can be set to skip the version check when determining if a check for updates is required. If this variable is set to any value, the `isCheckForUpdatesRequired` function will return `false`, indicating that a check for updates is not required. This can be useful in CI environments or other non-interactive contexts where you want to avoid performing a version check, which may involve file system operations or network requests. By setting this environment variable, you can ensure that the upgrade process proceeds without checking for updates, which can help speed up the process in certain scenarios.
7
+ *
8
+ * @defaultValue false
9
+ */
10
+ SKIP_VERSION_CHECK?: boolean;
11
+ }
12
+ //#endregion
13
+ export { ShellShockUpgradePluginEnv };
14
+ //# sourceMappingURL=env.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"env.d.cts","names":[],"sources":["../../src/types/env.ts"],"sourcesContent":[],"mappings":";;;UAoBiB,0BAAA,SAAmC;;AAApD"}
@@ -0,0 +1,14 @@
1
+ import { ShellShockEnv } from "@shell-shock/core/types/env";
2
+
3
+ //#region src/types/env.d.ts
4
+ interface ShellShockUpgradePluginEnv extends ShellShockEnv {
5
+ /**
6
+ * An environment variable that can be set to skip the version check when determining if a check for updates is required. If this variable is set to any value, the `isCheckForUpdatesRequired` function will return `false`, indicating that a check for updates is not required. This can be useful in CI environments or other non-interactive contexts where you want to avoid performing a version check, which may involve file system operations or network requests. By setting this environment variable, you can ensure that the upgrade process proceeds without checking for updates, which can help speed up the process in certain scenarios.
7
+ *
8
+ * @defaultValue false
9
+ */
10
+ SKIP_VERSION_CHECK?: boolean;
11
+ }
12
+ //#endregion
13
+ export { ShellShockUpgradePluginEnv };
14
+ //# sourceMappingURL=env.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"env.d.mts","names":[],"sources":["../../src/types/env.ts"],"sourcesContent":[],"mappings":";;;UAoBiB,0BAAA,SAAmC;;AAApD"}
@@ -0,0 +1 @@
1
+ export { };
@@ -1,3 +1,3 @@
1
- import { UpgradePluginContext, UpgradePluginOptions, UpgradePluginResolvedConfig, UpgradePluginUserConfig, UpgradeType } from "./plugin.cjs";
1
+ import { UpgradePluginContext, UpgradePluginOptions, UpgradePluginResolvedConfig, UpgradePluginUserConfig } from "./plugin.cjs";
2
2
  import { PACKAGE_MANAGERS, PACKAGE_MANAGER_LOCKFILE_MAP, PackageManager } from "./package-manager.cjs";
3
- export { PACKAGE_MANAGERS, PACKAGE_MANAGER_LOCKFILE_MAP, PackageManager, UpgradePluginContext, UpgradePluginOptions, UpgradePluginResolvedConfig, UpgradePluginUserConfig, UpgradeType };
3
+ export { PACKAGE_MANAGERS, PACKAGE_MANAGER_LOCKFILE_MAP, PackageManager, UpgradePluginContext, UpgradePluginOptions, UpgradePluginResolvedConfig, UpgradePluginUserConfig };
@@ -1,3 +1,3 @@
1
- import { UpgradePluginContext, UpgradePluginOptions, UpgradePluginResolvedConfig, UpgradePluginUserConfig, UpgradeType } from "./plugin.mjs";
1
+ import { UpgradePluginContext, UpgradePluginOptions, UpgradePluginResolvedConfig, UpgradePluginUserConfig } from "./plugin.mjs";
2
2
  import { PACKAGE_MANAGERS, PACKAGE_MANAGER_LOCKFILE_MAP, PackageManager } from "./package-manager.mjs";
3
- export { PACKAGE_MANAGERS, PACKAGE_MANAGER_LOCKFILE_MAP, PackageManager, UpgradePluginContext, UpgradePluginOptions, UpgradePluginResolvedConfig, UpgradePluginUserConfig, UpgradeType };
3
+ export { PACKAGE_MANAGERS, PACKAGE_MANAGER_LOCKFILE_MAP, PackageManager, UpgradePluginContext, UpgradePluginOptions, UpgradePluginResolvedConfig, UpgradePluginUserConfig };
@@ -2,21 +2,7 @@ import { ResolvedConfig, UserConfig } from "@shell-shock/core/types/config";
2
2
  import { Context } from "@shell-shock/core/types/context";
3
3
 
4
4
  //#region src/types/plugin.d.ts
5
- type UpgradeType = "confirm" | "auto" | "display" | "command";
6
5
  interface UpgradePluginOptions {
7
- /**
8
- * The type of upgrade to perform. This option determines how the upgrade process will be handled.
9
- *
10
- * @remarks
11
- * The upgrade logic will behave differently based on the value of this field:
12
- * - `"confirm"` - the user will be prompted to confirm the upgrade before it is performed. This is the default behavior and is recommended for most users, as it provides an extra layer of safety against unintended upgrades.
13
- * - `"auto"` - the upgrade will be performed automatically without any user confirmation. This option is suitable for advanced users who want a seamless upgrade experience and are confident in the stability of new versions.
14
- * - `"display"` - the command will only display the latest available version without performing any upgrade. This option is useful for users who want to check for updates without making any changes to their system.
15
- * - `"command"` - the upgrade will be triggered by a specific command. This option allows users to manually initiate the upgrade process through a dedicated command.
16
- *
17
- * @defaultValue "confirm"
18
- */
19
- type?: UpgradeType;
20
6
  /**
21
7
  * The time in milliseconds after which previously retrieved version data is considered stale.
22
8
  *
@@ -41,5 +27,5 @@ type UpgradePluginResolvedConfig = ResolvedConfig & {
41
27
  };
42
28
  type UpgradePluginContext<TResolvedConfig extends UpgradePluginResolvedConfig = UpgradePluginResolvedConfig> = Context<TResolvedConfig>;
43
29
  //#endregion
44
- export { UpgradePluginContext, UpgradePluginOptions, UpgradePluginResolvedConfig, UpgradePluginUserConfig, UpgradeType };
30
+ export { UpgradePluginContext, UpgradePluginOptions, UpgradePluginResolvedConfig, UpgradePluginUserConfig };
45
31
  //# sourceMappingURL=plugin.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"plugin.d.cts","names":[],"sources":["../../src/types/plugin.ts"],"sourcesContent":[],"mappings":";;;;KAwBY,WAAA;UAEK,oBAAA;EAFL;AAEZ;AA0BA;AAOA;;;;;AAOA;;;;EAGI,IAAA,CAAA,EA9BK,WA8BL;EAAO;;;;;;;;;;KAjBC,uBAAA,GAA0B;;;;WAI3B;;KAGC,2BAAA,GAA8B;;;;WAI/B,SAAS;;KAGR,6CACc,8BACtB,+BACA,QAAQ"}
1
+ {"version":3,"file":"plugin.d.cts","names":[],"sources":["../../src/types/plugin.ts"],"sourcesContent":[],"mappings":";;;;UAwBiB,oBAAA;;AAAjB;AAYA;AAOA;;;;;EAOY,SAAA,CAAA,EAAA,MAAA;;AAER,KAhBQ,uBAAA,GAA0B,UAgBlC,GAAA;EACQ;;;WAbD;;KAGC,2BAAA,GAA8B;;;;WAI/B,SAAS;;KAGR,6CACc,8BACtB,+BACA,QAAQ"}
@@ -2,21 +2,7 @@ import { ResolvedConfig, UserConfig } from "@shell-shock/core/types/config";
2
2
  import { Context } from "@shell-shock/core/types/context";
3
3
 
4
4
  //#region src/types/plugin.d.ts
5
- type UpgradeType = "confirm" | "auto" | "display" | "command";
6
5
  interface UpgradePluginOptions {
7
- /**
8
- * The type of upgrade to perform. This option determines how the upgrade process will be handled.
9
- *
10
- * @remarks
11
- * The upgrade logic will behave differently based on the value of this field:
12
- * - `"confirm"` - the user will be prompted to confirm the upgrade before it is performed. This is the default behavior and is recommended for most users, as it provides an extra layer of safety against unintended upgrades.
13
- * - `"auto"` - the upgrade will be performed automatically without any user confirmation. This option is suitable for advanced users who want a seamless upgrade experience and are confident in the stability of new versions.
14
- * - `"display"` - the command will only display the latest available version without performing any upgrade. This option is useful for users who want to check for updates without making any changes to their system.
15
- * - `"command"` - the upgrade will be triggered by a specific command. This option allows users to manually initiate the upgrade process through a dedicated command.
16
- *
17
- * @defaultValue "confirm"
18
- */
19
- type?: UpgradeType;
20
6
  /**
21
7
  * The time in milliseconds after which previously retrieved version data is considered stale.
22
8
  *
@@ -41,5 +27,5 @@ type UpgradePluginResolvedConfig = ResolvedConfig & {
41
27
  };
42
28
  type UpgradePluginContext<TResolvedConfig extends UpgradePluginResolvedConfig = UpgradePluginResolvedConfig> = Context<TResolvedConfig>;
43
29
  //#endregion
44
- export { UpgradePluginContext, UpgradePluginOptions, UpgradePluginResolvedConfig, UpgradePluginUserConfig, UpgradeType };
30
+ export { UpgradePluginContext, UpgradePluginOptions, UpgradePluginResolvedConfig, UpgradePluginUserConfig };
45
31
  //# sourceMappingURL=plugin.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"plugin.d.mts","names":[],"sources":["../../src/types/plugin.ts"],"sourcesContent":[],"mappings":";;;;KAwBY,WAAA;UAEK,oBAAA;EAFL;AAEZ;AA0BA;AAOA;;;;;AAOA;;;;EAGI,IAAA,CAAA,EA9BK,WA8BL;EAAO;;;;;;;;;;KAjBC,uBAAA,GAA0B;;;;WAI3B;;KAGC,2BAAA,GAA8B;;;;WAI/B,SAAS;;KAGR,6CACc,8BACtB,+BACA,QAAQ"}
1
+ {"version":3,"file":"plugin.d.mts","names":[],"sources":["../../src/types/plugin.ts"],"sourcesContent":[],"mappings":";;;;UAwBiB,oBAAA;;AAAjB;AAYA;AAOA;;;;;EAOY,SAAA,CAAA,EAAA,MAAA;;AAER,KAhBQ,uBAAA,GAA0B,UAgBlC,GAAA;EACQ;;;WAbD;;KAGC,2BAAA,GAA8B;;;;WAI/B,SAAS;;KAGR,6CACc,8BACtB,+BACA,QAAQ"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shell-shock/plugin-upgrade",
3
- "version": "0.1.5",
3
+ "version": "0.1.7",
4
4
  "type": "module",
5
5
  "description": "A package containing a Shell Shock plugin to manage upgrading the local application's version.",
6
6
  "repository": {
@@ -112,6 +112,20 @@
112
112
  "default": "./dist/types/index.mjs"
113
113
  }
114
114
  },
115
+ "./types/env": {
116
+ "require": {
117
+ "types": "./dist/types/env.d.cts",
118
+ "default": "./dist/types/env.cjs"
119
+ },
120
+ "import": {
121
+ "types": "./dist/types/env.d.mts",
122
+ "default": "./dist/types/env.mjs"
123
+ },
124
+ "default": {
125
+ "types": "./dist/types/env.d.mts",
126
+ "default": "./dist/types/env.mjs"
127
+ }
128
+ },
115
129
  "./types/package-manager": {
116
130
  "require": {
117
131
  "types": "./dist/types/package-manager.d.cts",
@@ -154,16 +168,16 @@
154
168
  "dependencies": {
155
169
  "@alloy-js/core": "0.23.0-dev.8",
156
170
  "@alloy-js/typescript": "0.23.0-dev.4",
157
- "@powerlines/deepkit": "^0.6.67",
158
- "@powerlines/plugin-alloy": "^0.23.17",
159
- "@powerlines/plugin-plugin": "^0.12.238",
160
- "@shell-shock/core": "^0.9.1",
171
+ "@powerlines/deepkit": "^0.6.69",
172
+ "@powerlines/plugin-alloy": "^0.23.19",
173
+ "@powerlines/plugin-plugin": "^0.12.240",
174
+ "@shell-shock/core": "^0.9.3",
161
175
  "@stryke/path": "0.26.6",
162
- "powerlines": "^0.38.54",
176
+ "powerlines": "^0.38.56",
163
177
  "defu": "6.1.4"
164
178
  },
165
179
  "devDependencies": {
166
- "@powerlines/plugin-deepkit": "^0.11.166",
180
+ "@powerlines/plugin-deepkit": "^0.11.168",
167
181
  "@types/node": "^25.3.0"
168
182
  },
169
183
  "publishConfig": {
@@ -181,5 +195,5 @@
181
195
  "./package.json": "./package.json"
182
196
  }
183
197
  },
184
- "gitHead": "b94dfbfbfd27471351cac0596afe1f550d8dca57"
198
+ "gitHead": "4cf65f37aca1c43ffac57a86bf21e184134437f1"
185
199
  }