update target to ES2022

This commit is contained in:
priya-kinthali 2025-10-15 16:25:33 +05:30
parent f171720e87
commit 356d3a7574
3 changed files with 19 additions and 12 deletions

View file

@ -87743,10 +87743,12 @@ var State;
State["CACHE_PATHS"] = "cache-paths";
})(State || (exports.State = State = {}));
class CacheDistributor {
packageManager;
cacheDependencyPath;
CACHE_KEY_PREFIX = 'setup-python';
constructor(packageManager, cacheDependencyPath) {
this.packageManager = packageManager;
this.cacheDependencyPath = cacheDependencyPath;
this.CACHE_KEY_PREFIX = 'setup-python';
}
async handleLoadedCache() { }
async restoreCache() {