From 61fdcd2fba6da1664f8ad85620c388d5fad1e619 Mon Sep 17 00:00:00 2001 From: Jordan Harband Date: Mon, 28 Aug 2023 21:42:14 -0700 Subject: [PATCH] [Deps] update `define-properties`, `es-abstract`, `es-set-tostringtag` --- implementation.js | 2 +- package.json | 6 +++--- shim.js | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/implementation.js b/implementation.js index ab4cc78..bf04afa 100644 --- a/implementation.js +++ b/implementation.js @@ -1,6 +1,6 @@ 'use strict'; -var Call = require('es-abstract/2022/Call'); +var Call = require('es-abstract/2023/Call'); module.exports = function apply(target, thisArgument, argumentsList) { return Call(target, thisArgument, argumentsList); diff --git a/package.json b/package.json index c399081..2d91e5a 100644 --- a/package.json +++ b/package.json @@ -71,9 +71,9 @@ }, "dependencies": { "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.5", - "es-set-tostringtag": "^2.0.0", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-set-tostringtag": "^2.0.1", "globalthis": "^1.0.3" }, "auto-changelog": { diff --git a/shim.js b/shim.js index 2699b98..3ce98f7 100644 --- a/shim.js +++ b/shim.js @@ -1,6 +1,6 @@ 'use strict'; -var CreateMethodProperty = require('es-abstract/2022/CreateMethodProperty'); +var CreateMethodProperty = require('es-abstract/2023/CreateMethodProperty'); var globalThis = require('globalthis')(); var setToStringTag = require('es-set-tostringtag');