Skip to content

Commit

Permalink
[Deps] update call-bind, es-abstract, es-errors, get-intrinsic
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Mar 17, 2024
1 parent a894b62 commit ece7445
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 13 deletions.
1 change: 0 additions & 1 deletion .eslintrc
Expand Up @@ -10,7 +10,6 @@
"capIsNewExceptions": [
"GetIntrinsic",
"IsCallable",
"ToObject",
"Type",
],
}],
Expand Down
4 changes: 2 additions & 2 deletions implementation.js
@@ -1,8 +1,8 @@
'use strict';

var GetIntrinsic = require('get-intrinsic');
var IsCallable = require('es-abstract/2023/IsCallable');
var Type = require('es-abstract/2023/Type');
var IsCallable = require('es-abstract/2024/IsCallable');
var Type = require('es-abstract/2024/Type');
var whichBuiltinType = require('which-builtin-type');
var $TypeError = require('es-errors/type');

Expand Down
18 changes: 9 additions & 9 deletions package.json
Expand Up @@ -62,6 +62,15 @@
"engines": {
"node": ">= 0.4"
},
"dependencies": {
"call-bind": "^1.0.7",
"define-properties": "^1.2.1",
"es-abstract": "^1.23.1",
"es-errors": "^1.3.0",
"get-intrinsic": "^1.2.4",
"globalthis": "^1.0.3",
"which-builtin-type": "^1.1.3"
},
"devDependencies": {
"@es-shims/api": "^2.4.2",
"@ljharb/eslint-config": "^21.1.0",
Expand All @@ -83,15 +92,6 @@
"backfillLimit": false,
"hideCredit": true
},
"dependencies": {
"call-bind": "^1.0.5",
"define-properties": "^1.2.1",
"es-abstract": "^1.22.3",
"es-errors": "^1.0.0",
"get-intrinsic": "^1.2.3",
"globalthis": "^1.0.3",
"which-builtin-type": "^1.1.3"
},
"publishConfig": {
"ignore": [
".github/workflows"
Expand Down
2 changes: 1 addition & 1 deletion polyfill.js
@@ -1,6 +1,6 @@
'use strict';

var Type = require('es-abstract/2023/Type');
var Type = require('es-abstract/2024/Type');

var $TypeError = require('es-errors/type');

Expand Down

0 comments on commit ece7445

Please sign in to comment.