@shell-shock/plugin-update 0.1.67 → 0.1.68
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/components/index.cjs +1 -2
- package/dist/components/index.mjs +2 -2
- package/dist/components/update-builtin.cjs +143 -236
- package/dist/components/update-builtin.d.cts +1 -2
- package/dist/components/update-builtin.d.cts.map +1 -1
- package/dist/components/update-builtin.d.mts +1 -2
- package/dist/components/update-builtin.mjs +11 -101
- package/dist/components/update-command.cjs +16 -21
- package/dist/components/update-command.d.cts.map +1 -1
- package/dist/components/update-command.mjs +5 -10
- package/dist/generator.cjs +33 -0
- package/dist/generator.d.cts +10 -0
- package/dist/generator.d.cts.map +1 -0
- package/dist/generator.d.mts +10 -0
- package/dist/generator.d.mts.map +1 -0
- package/dist/generator.mjs +32 -0
- package/dist/generator.mjs.map +1 -0
- package/dist/index.cjs +21 -34
- package/dist/index.d.cts +2 -2
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts +2 -2
- package/dist/index.mjs +20 -32
- package/dist/schemas/env.cjs +27 -0
- package/dist/schemas/env.d.cts +145 -0
- package/dist/schemas/env.d.cts.map +1 -0
- package/dist/schemas/env.d.mts +145 -0
- package/dist/{types → schemas}/env.d.mts.map +1 -1
- package/dist/schemas/env.mjs +27 -0
- package/dist/schemas/index.cjs +4 -0
- package/dist/schemas/index.d.cts +2 -0
- package/dist/schemas/index.d.mts +2 -0
- package/dist/schemas/index.mjs +3 -0
- package/dist/types/index.cjs +2 -7
- package/dist/types/index.mjs +3 -3
- package/dist/types/package-manager.cjs +1 -12
- package/dist/types/package-manager.d.cts.map +1 -1
- package/dist/types/package-manager.mjs +1 -10
- package/dist/types/plugin.cjs +0 -75
- package/dist/types/plugin.d.cts +0 -1
- package/dist/types/plugin.d.cts.map +1 -1
- package/dist/types/plugin.d.mts +0 -1
- package/dist/types/plugin.mjs +1 -71
- package/package.json +58 -31
- package/dist/_virtual/_rolldown/runtime.cjs +0 -29
- package/dist/types/env.cjs +0 -12
- package/dist/types/env.d.cts +0 -12
- package/dist/types/env.d.cts.map +0 -1
- package/dist/types/env.d.mts +0 -12
- package/dist/types/env.mjs +0 -11
- package/dist/types/plugin.mjs.map +0 -1
- /package/dist/{types → schemas}/env.mjs.map +0 -0
|
@@ -14,5 +14,4 @@ exports.LocatePackageJsonFunctionDeclaration = require_components_update_builtin
|
|
|
14
14
|
exports.UpdateBuiltin = require_components_update_builtin.UpdateBuiltin;
|
|
15
15
|
exports.UpdateCommand = require_components_update_command.UpdateCommand;
|
|
16
16
|
exports.UpdateFunctionDeclaration = require_components_update_builtin.UpdateFunctionDeclaration;
|
|
17
|
-
exports.UpdateVersionCheckFileFunctionDeclaration = require_components_update_builtin.UpdateVersionCheckFileFunctionDeclaration;
|
|
18
|
-
exports.__ΩUpdateBuiltinProps = require_components_update_builtin.__ΩUpdateBuiltinProps;
|
|
17
|
+
exports.UpdateVersionCheckFileFunctionDeclaration = require_components_update_builtin.UpdateVersionCheckFileFunctionDeclaration;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CheckForUpdatesFunctionDeclaration, FetchNpmPackageFunctionDeclaration, GetChangelogFunctionDeclaration, GetLatestVersionFunctionDeclaration, GetPackageManagerFunctionDeclaration, GetUpdateCommandFunctionDeclaration, IsCheckForUpdatesRequiredFunctionDeclaration, LocateLockfileFunctionDeclaration, LocatePackageJsonFunctionDeclaration, UpdateBuiltin, UpdateFunctionDeclaration, UpdateVersionCheckFileFunctionDeclaration
|
|
1
|
+
import { CheckForUpdatesFunctionDeclaration, FetchNpmPackageFunctionDeclaration, GetChangelogFunctionDeclaration, GetLatestVersionFunctionDeclaration, GetPackageManagerFunctionDeclaration, GetUpdateCommandFunctionDeclaration, IsCheckForUpdatesRequiredFunctionDeclaration, LocateLockfileFunctionDeclaration, LocatePackageJsonFunctionDeclaration, UpdateBuiltin, UpdateFunctionDeclaration, UpdateVersionCheckFileFunctionDeclaration } from "./update-builtin.mjs";
|
|
2
2
|
import { UpdateCommand } from "./update-command.mjs";
|
|
3
3
|
|
|
4
|
-
export { CheckForUpdatesFunctionDeclaration, FetchNpmPackageFunctionDeclaration, GetChangelogFunctionDeclaration, GetLatestVersionFunctionDeclaration, GetPackageManagerFunctionDeclaration, GetUpdateCommandFunctionDeclaration, IsCheckForUpdatesRequiredFunctionDeclaration, LocateLockfileFunctionDeclaration, LocatePackageJsonFunctionDeclaration, UpdateBuiltin, UpdateCommand, UpdateFunctionDeclaration, UpdateVersionCheckFileFunctionDeclaration
|
|
4
|
+
export { CheckForUpdatesFunctionDeclaration, FetchNpmPackageFunctionDeclaration, GetChangelogFunctionDeclaration, GetLatestVersionFunctionDeclaration, GetPackageManagerFunctionDeclaration, GetUpdateCommandFunctionDeclaration, IsCheckForUpdatesRequiredFunctionDeclaration, LocateLockfileFunctionDeclaration, LocatePackageJsonFunctionDeclaration, UpdateBuiltin, UpdateCommand, UpdateFunctionDeclaration, UpdateVersionCheckFileFunctionDeclaration };
|