Skip to content

Commit

Permalink
Bump the all-dependencies group with 2 updates (#584)
Browse files Browse the repository at this point in the history
* Bump the all-dependencies group with 2 updates

Bumps the all-dependencies group with 2 updates: [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env) and [postcss](https://github.com/postcss/postcss).


Updates `@babel/preset-env` from 7.24.8 to 7.25.0
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.25.0/packages/babel-preset-env)

Updates `postcss` from 8.4.39 to 8.4.40
- [Release notes](https://github.com/postcss/postcss/releases)
- [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md)
- [Commits](postcss/postcss@8.4.39...8.4.40)

---
updated-dependencies:
- dependency-name: "@babel/preset-env"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: postcss
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>

* rebuild

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Romain Menke <[email protected]>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
3 people authored Jul 31, 2024
1 parent 43b4db0 commit cc8d053
Show file tree
Hide file tree
Showing 11 changed files with 220 additions and 206 deletions.
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
</head>
<body>
<a href="https://github.com/mrhenry/web-tests">https://github.com/mrhenry/web-tests</a><br>
<p><i>Maybe stable after 4 more tests</i></p>
<p><i>Maybe stable after 2049 more tests</i></p>
<details><summary id="f209d29e-a7d7-47ec-b7b4-81b615e55976">test Example test<br><table><tbody><tr><td>babel</td><td>6N</tr>
<tr><td>babel_webpack</td><td>6N</tr>
<tr><td>core-web</td><td>6N</tr>
Expand Down
282 changes: 148 additions & 134 deletions package-lock.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@
"devDependencies": {
"@babel/cli": "^7.24.8",
"@babel/core": "^7.24.9",
"@babel/preset-env": "^7.24.8",
"@babel/preset-env": "^7.25.0",
"@mrhenry/babel-plugin-core-web": "^1.2.3",
"babel-loader": "^9.0.0",
"core-js": "^3.37.1",
"postcss": "^8.4.39",
"postcss": "^8.4.40",
"postcss-cli": "^11.0.0",
"postcss-preset-env": "^9.6.0",
"webpack": "^5.93.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5722,11 +5722,11 @@ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" ==
try {
if (!event.bubbles) {
event.cancelBubble = true;
var cancelBubbleEvent = function cancelBubbleEvent(event) {
var _cancelBubbleEvent = function cancelBubbleEvent(event) {
event.cancelBubble = true;
(element || window).detachEvent('on' + type, cancelBubbleEvent);
(element || window).detachEvent('on' + type, _cancelBubbleEvent);
};
this.attachEvent('on' + type, cancelBubbleEvent);
this.attachEvent('on' + type, _cancelBubbleEvent);
}
this.fireEvent('on' + type, event);
} catch (error) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5882,9 +5882,9 @@ var Iterator = function () {
if (typeof fn !== 'function') throw new TypeError(fn + " is not a function");
return fn;
};
var Iterator = function Iterator(list, context) {
if (!(this instanceof Iterator)) {
return new Iterator(list, context);
var _Iterator = function Iterator(list, context) {
if (!(this instanceof _Iterator)) {
return new _Iterator(list, context);
}
Object.defineProperties(this, {
__list__: {
Expand All @@ -5906,9 +5906,9 @@ var Iterator = function () {
context.on('_delete', this._onDelete.bind(this));
context.on('_clear', this._onClear.bind(this));
};
Object.defineProperties(Iterator.prototype, Object.assign({
Object.defineProperties(_Iterator.prototype, Object.assign({
constructor: {
value: Iterator,
value: _Iterator,
configurable: true,
enumerable: false,
writable: true
Expand Down Expand Up @@ -6030,21 +6030,21 @@ var Iterator = function () {
writable: true
}
}));
Object.defineProperty(Iterator.prototype, Symbol.iterator, {
Object.defineProperty(_Iterator.prototype, Symbol.iterator, {
value: function value() {
return this;
},
configurable: true,
enumerable: false,
writable: true
});
Object.defineProperty(Iterator.prototype, Symbol.toStringTag, {
Object.defineProperty(_Iterator.prototype, Symbol.toStringTag, {
value: 'Iterator',
configurable: false,
enumerable: false,
writable: true
});
return Iterator;
return _Iterator;
}();
/* harmony default export */ var _Iterator = (Iterator);
;// CONCATENATED MODULE: ./node_modules/@mrhenry/core-web/helpers/_ArrayIterator.js
Expand All @@ -6058,8 +6058,8 @@ var Iterator = function () {


var ArrayIterator = function () {
var ArrayIterator = function ArrayIterator(arr, kind) {
if (!(this instanceof ArrayIterator)) return new ArrayIterator(arr, kind);
var _ArrayIterator = function ArrayIterator(arr, kind) {
if (!(this instanceof _ArrayIterator)) return new _ArrayIterator(arr, kind);
_Iterator.call(this, arr);
if (!kind) kind = 'value';else if (String.prototype.includes.call(kind, 'key+value')) kind = 'key+value';else if (String.prototype.includes.call(kind, 'key')) kind = 'key';else kind = 'value';
Object.defineProperty(this, '__kind__', {
Expand All @@ -6069,10 +6069,10 @@ var ArrayIterator = function () {
writable: false
});
};
if (Object.setPrototypeOf) Object.setPrototypeOf(ArrayIterator, _Iterator.prototype);
ArrayIterator.prototype = Object.create(_Iterator.prototype, {
if (Object.setPrototypeOf) Object.setPrototypeOf(_ArrayIterator, _Iterator.prototype);
_ArrayIterator.prototype = Object.create(_Iterator.prototype, {
constructor: {
value: ArrayIterator,
value: _ArrayIterator,
configurable: true,
enumerable: false,
writable: true
Expand All @@ -6096,13 +6096,13 @@ var ArrayIterator = function () {
writable: true
}
});
Object.defineProperty(ArrayIterator.prototype, Symbol.toStringTag, {
Object.defineProperty(_ArrayIterator.prototype, Symbol.toStringTag, {
value: 'Array Iterator',
writable: false,
enumerable: false,
configurable: true
});
return ArrayIterator;
return _ArrayIterator;
}();
/* harmony default export */ var _ArrayIterator = (ArrayIterator);
;// CONCATENATED MODULE: ./node_modules/@mrhenry/core-web/modules/NodeList.prototype.@@iterator.js
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5030,9 +5030,9 @@ var Iterator = function () {
if (typeof fn !== 'function') throw new TypeError(fn + " is not a function");
return fn;
};
var Iterator = function Iterator(list, context) {
if (!(this instanceof Iterator)) {
return new Iterator(list, context);
var _Iterator = function Iterator(list, context) {
if (!(this instanceof _Iterator)) {
return new _Iterator(list, context);
}
Object.defineProperties(this, {
__list__: {
Expand All @@ -5054,9 +5054,9 @@ var Iterator = function () {
context.on('_delete', this._onDelete.bind(this));
context.on('_clear', this._onClear.bind(this));
};
Object.defineProperties(Iterator.prototype, Object.assign({
Object.defineProperties(_Iterator.prototype, Object.assign({
constructor: {
value: Iterator,
value: _Iterator,
configurable: true,
enumerable: false,
writable: true
Expand Down Expand Up @@ -5178,21 +5178,21 @@ var Iterator = function () {
writable: true
}
}));
Object.defineProperty(Iterator.prototype, Symbol.iterator, {
Object.defineProperty(_Iterator.prototype, Symbol.iterator, {
value: function value() {
return this;
},
configurable: true,
enumerable: false,
writable: true
});
Object.defineProperty(Iterator.prototype, Symbol.toStringTag, {
Object.defineProperty(_Iterator.prototype, Symbol.toStringTag, {
value: 'Iterator',
configurable: false,
enumerable: false,
writable: true
});
return Iterator;
return _Iterator;
}();
/* harmony default export */ var _Iterator = (Iterator);
;// CONCATENATED MODULE: ./node_modules/@mrhenry/core-web/helpers/_ArrayIterator.js
Expand All @@ -5206,8 +5206,8 @@ var Iterator = function () {


var ArrayIterator = function () {
var ArrayIterator = function ArrayIterator(arr, kind) {
if (!(this instanceof ArrayIterator)) return new ArrayIterator(arr, kind);
var _ArrayIterator = function ArrayIterator(arr, kind) {
if (!(this instanceof _ArrayIterator)) return new _ArrayIterator(arr, kind);
_Iterator.call(this, arr);
if (!kind) kind = 'value';else if (String.prototype.includes.call(kind, 'key+value')) kind = 'key+value';else if (String.prototype.includes.call(kind, 'key')) kind = 'key';else kind = 'value';
Object.defineProperty(this, '__kind__', {
Expand All @@ -5217,10 +5217,10 @@ var ArrayIterator = function () {
writable: false
});
};
if (Object.setPrototypeOf) Object.setPrototypeOf(ArrayIterator, _Iterator.prototype);
ArrayIterator.prototype = Object.create(_Iterator.prototype, {
if (Object.setPrototypeOf) Object.setPrototypeOf(_ArrayIterator, _Iterator.prototype);
_ArrayIterator.prototype = Object.create(_Iterator.prototype, {
constructor: {
value: ArrayIterator,
value: _ArrayIterator,
configurable: true,
enumerable: false,
writable: true
Expand All @@ -5244,13 +5244,13 @@ var ArrayIterator = function () {
writable: true
}
});
Object.defineProperty(ArrayIterator.prototype, Symbol.toStringTag, {
Object.defineProperty(_ArrayIterator.prototype, Symbol.toStringTag, {
value: 'Array Iterator',
writable: false,
enumerable: false,
configurable: true
});
return ArrayIterator;
return _ArrayIterator;
}();
/* harmony default export */ var _ArrayIterator = (ArrayIterator);
;// CONCATENATED MODULE: ./node_modules/@mrhenry/core-web/modules/NodeList.prototype.@@iterator.js
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5581,9 +5581,9 @@ var Iterator = function () {
if (typeof fn !== 'function') throw new TypeError(fn + " is not a function");
return fn;
};
var Iterator = function Iterator(list, context) {
if (!(this instanceof Iterator)) {
return new Iterator(list, context);
var _Iterator = function Iterator(list, context) {
if (!(this instanceof _Iterator)) {
return new _Iterator(list, context);
}
Object.defineProperties(this, {
__list__: {
Expand All @@ -5605,9 +5605,9 @@ var Iterator = function () {
context.on('_delete', this._onDelete.bind(this));
context.on('_clear', this._onClear.bind(this));
};
Object.defineProperties(Iterator.prototype, Object.assign({
Object.defineProperties(_Iterator.prototype, Object.assign({
constructor: {
value: Iterator,
value: _Iterator,
configurable: true,
enumerable: false,
writable: true
Expand Down Expand Up @@ -5729,21 +5729,21 @@ var Iterator = function () {
writable: true
}
}));
Object.defineProperty(Iterator.prototype, Symbol.iterator, {
Object.defineProperty(_Iterator.prototype, Symbol.iterator, {
value: function value() {
return this;
},
configurable: true,
enumerable: false,
writable: true
});
Object.defineProperty(Iterator.prototype, Symbol.toStringTag, {
Object.defineProperty(_Iterator.prototype, Symbol.toStringTag, {
value: 'Iterator',
configurable: false,
enumerable: false,
writable: true
});
return Iterator;
return _Iterator;
}();
/* harmony default export */ var _Iterator = (Iterator);
;// CONCATENATED MODULE: ./node_modules/@mrhenry/core-web/helpers/_ArrayIterator.js
Expand All @@ -5757,8 +5757,8 @@ var Iterator = function () {


var ArrayIterator = function () {
var ArrayIterator = function ArrayIterator(arr, kind) {
if (!(this instanceof ArrayIterator)) return new ArrayIterator(arr, kind);
var _ArrayIterator = function ArrayIterator(arr, kind) {
if (!(this instanceof _ArrayIterator)) return new _ArrayIterator(arr, kind);
_Iterator.call(this, arr);
if (!kind) kind = 'value';else if (String.prototype.includes.call(kind, 'key+value')) kind = 'key+value';else if (String.prototype.includes.call(kind, 'key')) kind = 'key';else kind = 'value';
Object.defineProperty(this, '__kind__', {
Expand All @@ -5768,10 +5768,10 @@ var ArrayIterator = function () {
writable: false
});
};
if (Object.setPrototypeOf) Object.setPrototypeOf(ArrayIterator, _Iterator.prototype);
ArrayIterator.prototype = Object.create(_Iterator.prototype, {
if (Object.setPrototypeOf) Object.setPrototypeOf(_ArrayIterator, _Iterator.prototype);
_ArrayIterator.prototype = Object.create(_Iterator.prototype, {
constructor: {
value: ArrayIterator,
value: _ArrayIterator,
configurable: true,
enumerable: false,
writable: true
Expand All @@ -5795,13 +5795,13 @@ var ArrayIterator = function () {
writable: true
}
});
Object.defineProperty(ArrayIterator.prototype, Symbol.toStringTag, {
Object.defineProperty(_ArrayIterator.prototype, Symbol.toStringTag, {
value: 'Array Iterator',
writable: false,
enumerable: false,
configurable: true
});
return ArrayIterator;
return _ArrayIterator;
}();
/* harmony default export */ var _ArrayIterator = (ArrayIterator);
;// CONCATENATED MODULE: ./node_modules/@mrhenry/core-web/modules/DOMTokenList.prototype.@@iterator.js
Expand Down
Loading

0 comments on commit cc8d053

Please sign in to comment.