@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.
Files changed (51) hide show
  1. package/dist/components/index.cjs +1 -2
  2. package/dist/components/index.mjs +2 -2
  3. package/dist/components/update-builtin.cjs +143 -236
  4. package/dist/components/update-builtin.d.cts +1 -2
  5. package/dist/components/update-builtin.d.cts.map +1 -1
  6. package/dist/components/update-builtin.d.mts +1 -2
  7. package/dist/components/update-builtin.mjs +11 -101
  8. package/dist/components/update-command.cjs +16 -21
  9. package/dist/components/update-command.d.cts.map +1 -1
  10. package/dist/components/update-command.mjs +5 -10
  11. package/dist/generator.cjs +33 -0
  12. package/dist/generator.d.cts +10 -0
  13. package/dist/generator.d.cts.map +1 -0
  14. package/dist/generator.d.mts +10 -0
  15. package/dist/generator.d.mts.map +1 -0
  16. package/dist/generator.mjs +32 -0
  17. package/dist/generator.mjs.map +1 -0
  18. package/dist/index.cjs +21 -34
  19. package/dist/index.d.cts +2 -2
  20. package/dist/index.d.cts.map +1 -1
  21. package/dist/index.d.mts +2 -2
  22. package/dist/index.mjs +20 -32
  23. package/dist/schemas/env.cjs +27 -0
  24. package/dist/schemas/env.d.cts +145 -0
  25. package/dist/schemas/env.d.cts.map +1 -0
  26. package/dist/schemas/env.d.mts +145 -0
  27. package/dist/{types → schemas}/env.d.mts.map +1 -1
  28. package/dist/schemas/env.mjs +27 -0
  29. package/dist/schemas/index.cjs +4 -0
  30. package/dist/schemas/index.d.cts +2 -0
  31. package/dist/schemas/index.d.mts +2 -0
  32. package/dist/schemas/index.mjs +3 -0
  33. package/dist/types/index.cjs +2 -7
  34. package/dist/types/index.mjs +3 -3
  35. package/dist/types/package-manager.cjs +1 -12
  36. package/dist/types/package-manager.d.cts.map +1 -1
  37. package/dist/types/package-manager.mjs +1 -10
  38. package/dist/types/plugin.cjs +0 -75
  39. package/dist/types/plugin.d.cts +0 -1
  40. package/dist/types/plugin.d.cts.map +1 -1
  41. package/dist/types/plugin.d.mts +0 -1
  42. package/dist/types/plugin.mjs +1 -71
  43. package/package.json +58 -31
  44. package/dist/_virtual/_rolldown/runtime.cjs +0 -29
  45. package/dist/types/env.cjs +0 -12
  46. package/dist/types/env.d.cts +0 -12
  47. package/dist/types/env.d.cts.map +0 -1
  48. package/dist/types/env.d.mts +0 -12
  49. package/dist/types/env.mjs +0 -11
  50. package/dist/types/plugin.mjs.map +0 -1
  51. /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, __ΩUpdateBuiltinProps } from "./update-builtin.mjs";
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, __ΩUpdateBuiltinProps };
4
+ export { CheckForUpdatesFunctionDeclaration, FetchNpmPackageFunctionDeclaration, GetChangelogFunctionDeclaration, GetLatestVersionFunctionDeclaration, GetPackageManagerFunctionDeclaration, GetUpdateCommandFunctionDeclaration, IsCheckForUpdatesRequiredFunctionDeclaration, LocateLockfileFunctionDeclaration, LocatePackageJsonFunctionDeclaration, UpdateBuiltin, UpdateCommand, UpdateFunctionDeclaration, UpdateVersionCheckFileFunctionDeclaration };