@shell-shock/plugin-update 0.1.58
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/LICENSE +201 -0
- package/README.md +264 -0
- package/dist/_virtual/_rolldown/runtime.cjs +29 -0
- package/dist/components/index.cjs +18 -0
- package/dist/components/index.d.cts +3 -0
- package/dist/components/index.d.mts +3 -0
- package/dist/components/index.mjs +4 -0
- package/dist/components/update-builtin.cjs +1301 -0
- package/dist/components/update-builtin.d.cts +55 -0
- package/dist/components/update-builtin.d.cts.map +1 -0
- package/dist/components/update-builtin.d.mts +55 -0
- package/dist/components/update-builtin.d.mts.map +1 -0
- package/dist/components/update-builtin.mjs +1287 -0
- package/dist/components/update-builtin.mjs.map +1 -0
- package/dist/components/update-command.cjs +95 -0
- package/dist/components/update-command.d.cts +8 -0
- package/dist/components/update-command.d.cts.map +1 -0
- package/dist/components/update-command.d.mts +8 -0
- package/dist/components/update-command.d.mts.map +1 -0
- package/dist/components/update-command.mjs +95 -0
- package/dist/components/update-command.mjs.map +1 -0
- package/dist/index.cjs +78 -0
- package/dist/index.d.cts +11 -0
- package/dist/index.d.cts.map +1 -0
- package/dist/index.d.mts +11 -0
- package/dist/index.d.mts.map +1 -0
- package/dist/index.mjs +75 -0
- package/dist/index.mjs.map +1 -0
- package/dist/types/env.cjs +12 -0
- package/dist/types/env.d.cts +12 -0
- package/dist/types/env.d.cts.map +1 -0
- package/dist/types/env.d.mts +12 -0
- package/dist/types/env.d.mts.map +1 -0
- package/dist/types/env.mjs +11 -0
- package/dist/types/env.mjs.map +1 -0
- package/dist/types/index.cjs +11 -0
- package/dist/types/index.d.cts +3 -0
- package/dist/types/index.d.mts +3 -0
- package/dist/types/index.mjs +4 -0
- package/dist/types/package-manager.cjs +31 -0
- package/dist/types/package-manager.d.cts +7 -0
- package/dist/types/package-manager.d.cts.map +1 -0
- package/dist/types/package-manager.d.mts +7 -0
- package/dist/types/package-manager.d.mts.map +1 -0
- package/dist/types/package-manager.mjs +28 -0
- package/dist/types/package-manager.mjs.map +1 -0
- package/dist/types/plugin.cjs +75 -0
- package/dist/types/plugin.d.cts +45 -0
- package/dist/types/plugin.d.cts.map +1 -0
- package/dist/types/plugin.d.mts +45 -0
- package/dist/types/plugin.d.mts.map +1 -0
- package/dist/types/plugin.mjs +71 -0
- package/dist/types/plugin.mjs.map +1 -0
- package/package.json +200 -0
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import { BuiltinFileProps } from "@powerlines/plugin-alloy/typescript/components/builtin-file";
|
|
2
|
+
|
|
3
|
+
//#region src/components/update-builtin.d.ts
|
|
4
|
+
/**
|
|
5
|
+
* The `locatePackageJson` handler function declaration code for the Shell Shock project.
|
|
6
|
+
*/
|
|
7
|
+
declare function LocatePackageJsonFunctionDeclaration(): import("@alloy-js/core").Children;
|
|
8
|
+
/**
|
|
9
|
+
* The `locateLockfile` handler function declaration code for the Shell Shock project.
|
|
10
|
+
*/
|
|
11
|
+
declare function LocateLockfileFunctionDeclaration(): import("@alloy-js/core").Children;
|
|
12
|
+
/**
|
|
13
|
+
* The `getPackageManager` handler function declaration code for the Shell Shock project.
|
|
14
|
+
*/
|
|
15
|
+
declare function GetPackageManagerFunctionDeclaration(): import("@alloy-js/core").Children;
|
|
16
|
+
/**
|
|
17
|
+
* The `fetchNpmPackage` handler function declaration code for the Shell Shock project.
|
|
18
|
+
*/
|
|
19
|
+
declare function FetchNpmPackageFunctionDeclaration(): import("@alloy-js/core").Children;
|
|
20
|
+
/**
|
|
21
|
+
* The `getLatestVersion` handler function declaration code for the Shell Shock project.
|
|
22
|
+
*/
|
|
23
|
+
declare function GetLatestVersionFunctionDeclaration(): import("@alloy-js/core").Children;
|
|
24
|
+
/**
|
|
25
|
+
* The `update` handler function declaration code for the Shell Shock project.
|
|
26
|
+
*/
|
|
27
|
+
declare function GetUpdateCommandFunctionDeclaration(): import("@alloy-js/core").Children;
|
|
28
|
+
/**
|
|
29
|
+
* The `update` handler function declaration code for the Shell Shock project.
|
|
30
|
+
*/
|
|
31
|
+
declare function UpdateFunctionDeclaration(): import("@alloy-js/core").Children;
|
|
32
|
+
/**
|
|
33
|
+
* The `updateVersionCheckFile` handler function declaration code for the Shell Shock project.
|
|
34
|
+
*/
|
|
35
|
+
declare function UpdateVersionCheckFileFunctionDeclaration(): import("@alloy-js/core").Children;
|
|
36
|
+
/**
|
|
37
|
+
* The `isCheckForUpdatesRequired` handler function declaration code for the Shell Shock project.
|
|
38
|
+
*/
|
|
39
|
+
declare function IsCheckForUpdatesRequiredFunctionDeclaration(): import("@alloy-js/core").Children;
|
|
40
|
+
/**
|
|
41
|
+
* The `checkForUpdates` handler function declaration code for the Shell Shock project.
|
|
42
|
+
*/
|
|
43
|
+
declare function CheckForUpdatesFunctionDeclaration(): import("@alloy-js/core").Children;
|
|
44
|
+
/**
|
|
45
|
+
* The `getChangelog` handler function declaration code for the Shell Shock project.
|
|
46
|
+
*/
|
|
47
|
+
declare function GetChangelogFunctionDeclaration(): import("@alloy-js/core").Children;
|
|
48
|
+
interface UpdateBuiltinProps extends Omit<BuiltinFileProps, "id" | "description"> {}
|
|
49
|
+
/**
|
|
50
|
+
* A built-in update module for Shell Shock.
|
|
51
|
+
*/
|
|
52
|
+
declare function UpdateBuiltin(props: UpdateBuiltinProps): import("@alloy-js/core").Children;
|
|
53
|
+
//#endregion
|
|
54
|
+
export { CheckForUpdatesFunctionDeclaration, FetchNpmPackageFunctionDeclaration, GetChangelogFunctionDeclaration, GetLatestVersionFunctionDeclaration, GetPackageManagerFunctionDeclaration, GetUpdateCommandFunctionDeclaration, IsCheckForUpdatesRequiredFunctionDeclaration, LocateLockfileFunctionDeclaration, LocatePackageJsonFunctionDeclaration, UpdateBuiltin, UpdateBuiltinProps, UpdateFunctionDeclaration, UpdateVersionCheckFileFunctionDeclaration };
|
|
55
|
+
//# sourceMappingURL=update-builtin.d.cts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"update-builtin.d.cts","names":[],"sources":["../../src/components/update-builtin.tsx"],"mappings":";;;;;AA6CA;iBAAgB,oCAAA,6BAAoC,QAAA;;;AAAA;iBA8FpC,iCAAA,6BAAiC,QAAA;;;;iBAsFjC,oCAAA,6BAAoC,QAAA;AAApD;;;AAAA,iBA0IgB,kCAAA,6BAAkC,QAAA;AA1IE;AA0IpD;;AA1IoD,iBAiTpC,mCAAA,6BAAmC,QAAA;;AAvKD;AAuKlD;iBA2CgB,mCAAA,6BAAmC,QAAA;;;AA3CA;iBAoHnC,yBAAA,6BAAyB,QAAA;;;;iBAuFzB,yCAAA,6BAAyC,QAAA;AAvFzD;;;AAAA,iBAoHgB,4CAAA,6BAA4C,QAAA;AApHnB;AAuFzC;;AAvFyC,iBA2KzB,kCAAA,6BAAkC,QAAA;;AApFO;AA6BzD;iBA4LgB,+BAAA,6BAA+B,QAAA;AAAA,UAmH9B,kBAAA,SAA2B,IAAI,CAC9C,gBAAA;AAhT0D;AAuD5D;;AAvD4D,iBAuT5C,aAAA,CAAc,KAAA,EAAO,kBAAkB,4BAAA,QAAA"}
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import { BuiltinFileProps } from "@powerlines/plugin-alloy/typescript/components/builtin-file";
|
|
2
|
+
|
|
3
|
+
//#region src/components/update-builtin.d.ts
|
|
4
|
+
/**
|
|
5
|
+
* The `locatePackageJson` handler function declaration code for the Shell Shock project.
|
|
6
|
+
*/
|
|
7
|
+
declare function LocatePackageJsonFunctionDeclaration(): import("@alloy-js/core").Children;
|
|
8
|
+
/**
|
|
9
|
+
* The `locateLockfile` handler function declaration code for the Shell Shock project.
|
|
10
|
+
*/
|
|
11
|
+
declare function LocateLockfileFunctionDeclaration(): import("@alloy-js/core").Children;
|
|
12
|
+
/**
|
|
13
|
+
* The `getPackageManager` handler function declaration code for the Shell Shock project.
|
|
14
|
+
*/
|
|
15
|
+
declare function GetPackageManagerFunctionDeclaration(): import("@alloy-js/core").Children;
|
|
16
|
+
/**
|
|
17
|
+
* The `fetchNpmPackage` handler function declaration code for the Shell Shock project.
|
|
18
|
+
*/
|
|
19
|
+
declare function FetchNpmPackageFunctionDeclaration(): import("@alloy-js/core").Children;
|
|
20
|
+
/**
|
|
21
|
+
* The `getLatestVersion` handler function declaration code for the Shell Shock project.
|
|
22
|
+
*/
|
|
23
|
+
declare function GetLatestVersionFunctionDeclaration(): import("@alloy-js/core").Children;
|
|
24
|
+
/**
|
|
25
|
+
* The `update` handler function declaration code for the Shell Shock project.
|
|
26
|
+
*/
|
|
27
|
+
declare function GetUpdateCommandFunctionDeclaration(): import("@alloy-js/core").Children;
|
|
28
|
+
/**
|
|
29
|
+
* The `update` handler function declaration code for the Shell Shock project.
|
|
30
|
+
*/
|
|
31
|
+
declare function UpdateFunctionDeclaration(): import("@alloy-js/core").Children;
|
|
32
|
+
/**
|
|
33
|
+
* The `updateVersionCheckFile` handler function declaration code for the Shell Shock project.
|
|
34
|
+
*/
|
|
35
|
+
declare function UpdateVersionCheckFileFunctionDeclaration(): import("@alloy-js/core").Children;
|
|
36
|
+
/**
|
|
37
|
+
* The `isCheckForUpdatesRequired` handler function declaration code for the Shell Shock project.
|
|
38
|
+
*/
|
|
39
|
+
declare function IsCheckForUpdatesRequiredFunctionDeclaration(): import("@alloy-js/core").Children;
|
|
40
|
+
/**
|
|
41
|
+
* The `checkForUpdates` handler function declaration code for the Shell Shock project.
|
|
42
|
+
*/
|
|
43
|
+
declare function CheckForUpdatesFunctionDeclaration(): import("@alloy-js/core").Children;
|
|
44
|
+
/**
|
|
45
|
+
* The `getChangelog` handler function declaration code for the Shell Shock project.
|
|
46
|
+
*/
|
|
47
|
+
declare function GetChangelogFunctionDeclaration(): import("@alloy-js/core").Children;
|
|
48
|
+
interface UpdateBuiltinProps extends Omit<BuiltinFileProps, "id" | "description"> {}
|
|
49
|
+
/**
|
|
50
|
+
* A built-in update module for Shell Shock.
|
|
51
|
+
*/
|
|
52
|
+
declare function UpdateBuiltin(props: UpdateBuiltinProps): import("@alloy-js/core").Children;
|
|
53
|
+
//#endregion
|
|
54
|
+
export { CheckForUpdatesFunctionDeclaration, FetchNpmPackageFunctionDeclaration, GetChangelogFunctionDeclaration, GetLatestVersionFunctionDeclaration, GetPackageManagerFunctionDeclaration, GetUpdateCommandFunctionDeclaration, IsCheckForUpdatesRequiredFunctionDeclaration, LocateLockfileFunctionDeclaration, LocatePackageJsonFunctionDeclaration, UpdateBuiltin, UpdateBuiltinProps, UpdateFunctionDeclaration, UpdateVersionCheckFileFunctionDeclaration };
|
|
55
|
+
//# sourceMappingURL=update-builtin.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"update-builtin.d.mts","names":[],"sources":["../../src/components/update-builtin.tsx"],"mappings":""}
|