@shell-shock/plugin-upgrade 0.1.4 → 0.1.6
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 +7 -3
- package/dist/components/index.d.cts +2 -2
- package/dist/components/index.d.mts +2 -2
- package/dist/components/index.mjs +2 -2
- package/dist/components/upgrade-builtin.cjs +436 -49
- package/dist/components/upgrade-builtin.d.cts +21 -5
- package/dist/components/upgrade-builtin.d.cts.map +1 -1
- package/dist/components/upgrade-builtin.d.mts +21 -5
- package/dist/components/upgrade-builtin.d.mts.map +1 -1
- package/dist/components/upgrade-builtin.mjs +430 -47
- package/dist/components/upgrade-builtin.mjs.map +1 -1
- package/dist/components/upgrade-command.cjs +1 -1
- package/dist/components/upgrade-command.d.cts +2 -2
- package/dist/components/upgrade-command.mjs +1 -1
- package/dist/index.cjs +12 -1
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +11 -1
- package/dist/index.mjs.map +1 -1
- package/dist/types/env.cjs +0 -0
- package/dist/types/env.d.cts +14 -0
- package/dist/types/env.d.cts.map +1 -0
- package/dist/types/env.d.mts +14 -0
- package/dist/types/env.d.mts.map +1 -0
- package/dist/types/env.mjs +1 -0
- package/dist/types/package-manager.d.cts.map +1 -1
- package/dist/types/plugin.d.cts +6 -4
- package/dist/types/plugin.d.cts.map +1 -1
- package/dist/types/plugin.d.mts +6 -4
- package/dist/types/plugin.d.mts.map +1 -1
- package/package.json +22 -8
|
@@ -1,11 +1,15 @@
|
|
|
1
1
|
const require_components_upgrade_builtin = require('./upgrade-builtin.cjs');
|
|
2
2
|
const require_components_upgrade_command = require('./upgrade-command.cjs');
|
|
3
3
|
|
|
4
|
+
exports.CheckForUpdatesFunctionDeclaration = require_components_upgrade_builtin.CheckForUpdatesFunctionDeclaration;
|
|
4
5
|
exports.FetchNpmPackageFunctionDeclaration = require_components_upgrade_builtin.FetchNpmPackageFunctionDeclaration;
|
|
5
|
-
exports.
|
|
6
|
+
exports.GetLatestVersionFunctionDeclaration = require_components_upgrade_builtin.GetLatestVersionFunctionDeclaration;
|
|
6
7
|
exports.GetPackageManagerFunctionDeclaration = require_components_upgrade_builtin.GetPackageManagerFunctionDeclaration;
|
|
7
|
-
exports.
|
|
8
|
+
exports.GetUpgradeCommandFunctionDeclaration = require_components_upgrade_builtin.GetUpgradeCommandFunctionDeclaration;
|
|
9
|
+
exports.IsCheckForUpdatesRequiredFunctionDeclaration = require_components_upgrade_builtin.IsCheckForUpdatesRequiredFunctionDeclaration;
|
|
8
10
|
exports.LocateLockfileFunctionDeclaration = require_components_upgrade_builtin.LocateLockfileFunctionDeclaration;
|
|
9
11
|
exports.LocatePackageJsonFunctionDeclaration = require_components_upgrade_builtin.LocatePackageJsonFunctionDeclaration;
|
|
12
|
+
exports.UpdateVersionCheckFileFunctionDeclaration = require_components_upgrade_builtin.UpdateVersionCheckFileFunctionDeclaration;
|
|
10
13
|
exports.UpgradeBuiltin = require_components_upgrade_builtin.UpgradeBuiltin;
|
|
11
|
-
exports.UpgradeCommand = require_components_upgrade_command.UpgradeCommand;
|
|
14
|
+
exports.UpgradeCommand = require_components_upgrade_command.UpgradeCommand;
|
|
15
|
+
exports.UpgradeFunctionDeclaration = require_components_upgrade_builtin.UpgradeFunctionDeclaration;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { FetchNpmPackageFunctionDeclaration,
|
|
1
|
+
import { CheckForUpdatesFunctionDeclaration, FetchNpmPackageFunctionDeclaration, GetLatestVersionFunctionDeclaration, GetPackageManagerFunctionDeclaration, GetUpgradeCommandFunctionDeclaration, IsCheckForUpdatesRequiredFunctionDeclaration, LocateLockfileFunctionDeclaration, LocatePackageJsonFunctionDeclaration, UpdateVersionCheckFileFunctionDeclaration, UpgradeBuiltin, UpgradeBuiltinProps, UpgradeFunctionDeclaration } from "./upgrade-builtin.cjs";
|
|
2
2
|
import { UpgradeCommand } from "./upgrade-command.cjs";
|
|
3
|
-
export { FetchNpmPackageFunctionDeclaration,
|
|
3
|
+
export { CheckForUpdatesFunctionDeclaration, FetchNpmPackageFunctionDeclaration, GetLatestVersionFunctionDeclaration, GetPackageManagerFunctionDeclaration, GetUpgradeCommandFunctionDeclaration, IsCheckForUpdatesRequiredFunctionDeclaration, LocateLockfileFunctionDeclaration, LocatePackageJsonFunctionDeclaration, UpdateVersionCheckFileFunctionDeclaration, UpgradeBuiltin, UpgradeBuiltinProps, UpgradeCommand, UpgradeFunctionDeclaration };
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { FetchNpmPackageFunctionDeclaration,
|
|
1
|
+
import { CheckForUpdatesFunctionDeclaration, FetchNpmPackageFunctionDeclaration, GetLatestVersionFunctionDeclaration, GetPackageManagerFunctionDeclaration, GetUpgradeCommandFunctionDeclaration, IsCheckForUpdatesRequiredFunctionDeclaration, LocateLockfileFunctionDeclaration, LocatePackageJsonFunctionDeclaration, UpdateVersionCheckFileFunctionDeclaration, UpgradeBuiltin, UpgradeBuiltinProps, UpgradeFunctionDeclaration } from "./upgrade-builtin.mjs";
|
|
2
2
|
import { UpgradeCommand } from "./upgrade-command.mjs";
|
|
3
|
-
export { FetchNpmPackageFunctionDeclaration,
|
|
3
|
+
export { CheckForUpdatesFunctionDeclaration, FetchNpmPackageFunctionDeclaration, GetLatestVersionFunctionDeclaration, GetPackageManagerFunctionDeclaration, GetUpgradeCommandFunctionDeclaration, IsCheckForUpdatesRequiredFunctionDeclaration, LocateLockfileFunctionDeclaration, LocatePackageJsonFunctionDeclaration, UpdateVersionCheckFileFunctionDeclaration, UpgradeBuiltin, UpgradeBuiltinProps, UpgradeCommand, UpgradeFunctionDeclaration };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { FetchNpmPackageFunctionDeclaration,
|
|
1
|
+
import { CheckForUpdatesFunctionDeclaration, FetchNpmPackageFunctionDeclaration, GetLatestVersionFunctionDeclaration, GetPackageManagerFunctionDeclaration, GetUpgradeCommandFunctionDeclaration, IsCheckForUpdatesRequiredFunctionDeclaration, LocateLockfileFunctionDeclaration, LocatePackageJsonFunctionDeclaration, UpdateVersionCheckFileFunctionDeclaration, UpgradeBuiltin, UpgradeFunctionDeclaration } from "./upgrade-builtin.mjs";
|
|
2
2
|
import { UpgradeCommand } from "./upgrade-command.mjs";
|
|
3
3
|
|
|
4
|
-
export { FetchNpmPackageFunctionDeclaration,
|
|
4
|
+
export { CheckForUpdatesFunctionDeclaration, FetchNpmPackageFunctionDeclaration, GetLatestVersionFunctionDeclaration, GetPackageManagerFunctionDeclaration, GetUpgradeCommandFunctionDeclaration, IsCheckForUpdatesRequiredFunctionDeclaration, LocateLockfileFunctionDeclaration, LocatePackageJsonFunctionDeclaration, UpdateVersionCheckFileFunctionDeclaration, UpgradeBuiltin, UpgradeCommand, UpgradeFunctionDeclaration };
|