@shell-shock/plugin-update 0.1.64 → 0.1.65
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/types/env.cjs +1 -1
- package/dist/types/env.d.cts +2 -2
- package/dist/types/env.d.cts.map +1 -1
- package/dist/types/env.d.mts +2 -2
- package/dist/types/env.mjs +1 -1
- package/package.json +8 -8
package/dist/types/env.cjs
CHANGED
|
@@ -5,7 +5,7 @@ const __ΩShellShockUpdateEnv = [
|
|
|
5
5
|
"SKIP_UPDATE_CHECK",
|
|
6
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 update process proceeds without checking for updates, which can help speed up the process in certain scenarios.",
|
|
7
7
|
"ShellShockUpdateEnv",
|
|
8
|
-
"P!
|
|
8
|
+
"P!)4!8?\"Mw#y"
|
|
9
9
|
];
|
|
10
10
|
|
|
11
11
|
//#endregion
|
package/dist/types/env.d.cts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { ShellShockEnv } from "@shell-shock/core/types/env";
|
|
2
2
|
|
|
3
3
|
//#region src/types/env.d.ts
|
|
4
|
-
|
|
4
|
+
interface ShellShockUpdateEnv extends ShellShockEnv {
|
|
5
5
|
/**
|
|
6
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 update process proceeds without checking for updates, which can help speed up the process in certain scenarios.
|
|
7
7
|
*/
|
|
8
8
|
SKIP_UPDATE_CHECK?: boolean;
|
|
9
|
-
}
|
|
9
|
+
}
|
|
10
10
|
//#endregion
|
|
11
11
|
export { ShellShockUpdateEnv };
|
|
12
12
|
//# sourceMappingURL=env.d.cts.map
|
package/dist/types/env.d.cts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"env.d.cts","names":[],"sources":["../../src/types/env.ts"],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"env.d.cts","names":[],"sources":["../../src/types/env.ts"],"mappings":";;;UAqBiB,mBAAA,SAA4B,aAAa;;AAA1D;;EAIE,iBAAiB;AAAA"}
|
package/dist/types/env.d.mts
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { ShellShockEnv } from "@shell-shock/core/types/env";
|
|
2
2
|
|
|
3
3
|
//#region src/types/env.d.ts
|
|
4
|
-
|
|
4
|
+
interface ShellShockUpdateEnv extends ShellShockEnv {
|
|
5
5
|
/**
|
|
6
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 update process proceeds without checking for updates, which can help speed up the process in certain scenarios.
|
|
7
7
|
*/
|
|
8
8
|
SKIP_UPDATE_CHECK?: boolean;
|
|
9
|
-
}
|
|
9
|
+
}
|
|
10
10
|
//#endregion
|
|
11
11
|
export { ShellShockUpdateEnv };
|
|
12
12
|
//# sourceMappingURL=env.d.mts.map
|
package/dist/types/env.mjs
CHANGED
|
@@ -3,7 +3,7 @@ const __ΩShellShockUpdateEnv = [
|
|
|
3
3
|
"SKIP_UPDATE_CHECK",
|
|
4
4
|
"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 update process proceeds without checking for updates, which can help speed up the process in certain scenarios.",
|
|
5
5
|
"ShellShockUpdateEnv",
|
|
6
|
-
"P!
|
|
6
|
+
"P!)4!8?\"Mw#y"
|
|
7
7
|
];
|
|
8
8
|
|
|
9
9
|
//#endregion
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shell-shock/plugin-update",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.65",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "A package containing a Shell Shock plugin to manage updating the local application's version.",
|
|
6
6
|
"keywords": [
|
|
@@ -167,18 +167,18 @@
|
|
|
167
167
|
"dependencies": {
|
|
168
168
|
"@alloy-js/core": "^0.23.1",
|
|
169
169
|
"@alloy-js/typescript": "^0.23.0",
|
|
170
|
-
"@powerlines/deepkit": "^0.9.
|
|
171
|
-
"@powerlines/plugin-alloy": "^0.26.
|
|
172
|
-
"@powerlines/plugin-plugin": "^0.12.
|
|
173
|
-
"@shell-shock/core": "0.17.
|
|
170
|
+
"@powerlines/deepkit": "^0.9.88",
|
|
171
|
+
"@powerlines/plugin-alloy": "^0.26.227",
|
|
172
|
+
"@powerlines/plugin-plugin": "^0.12.546",
|
|
173
|
+
"@shell-shock/core": "0.17.20",
|
|
174
174
|
"@stryke/path": "^0.29.11",
|
|
175
175
|
"@stryke/type-checks": "^0.6.17",
|
|
176
176
|
"@stryke/types": "^0.12.12",
|
|
177
177
|
"defu": "^6.1.7",
|
|
178
|
-
"powerlines": "^0.47.
|
|
178
|
+
"powerlines": "^0.47.134"
|
|
179
179
|
},
|
|
180
180
|
"devDependencies": {
|
|
181
|
-
"@powerlines/plugin-deepkit": "^0.11.
|
|
181
|
+
"@powerlines/plugin-deepkit": "^0.11.477",
|
|
182
182
|
"@types/node": "^25.9.2"
|
|
183
183
|
},
|
|
184
184
|
"publishConfig": {
|
|
@@ -196,5 +196,5 @@
|
|
|
196
196
|
"./package.json": "./package.json"
|
|
197
197
|
}
|
|
198
198
|
},
|
|
199
|
-
"gitHead": "
|
|
199
|
+
"gitHead": "7c26148e430cd5dca15bc74320969a4656683511"
|
|
200
200
|
}
|