Skip to content

Commit

Permalink
chore: @putout/bundle: v3.18.4
Browse files Browse the repository at this point in the history
  • Loading branch information
coderaiser committed Nov 4, 2024
1 parent 1ea20a8 commit b97c7ec
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 8 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2024.11.04, v3.18.4

feature:
- 1ea20a8 @putout/bundle: eslint v9.14.0

2024.10.29, v3.18.3

feature:
Expand Down
29 changes: 23 additions & 6 deletions bundle/putout.js
Original file line number Diff line number Diff line change
Expand Up @@ -58227,10 +58227,19 @@ var __setModuleDefault = Object.create ? (function(o, v) {
o["default"] = v;
};

var ownKeys = function(o) {
ownKeys = Object.getOwnPropertyNames || function (o) {
var ar = [];
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
return ar;
};
return ownKeys(o);
};

function __importStar(mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
__setModuleDefault(result, mod);
return result;
}
Expand Down Expand Up @@ -94516,15 +94525,17 @@ function requireEslintVisitorKeys () {
],
ExportAllDeclaration: [
"exported",
"source"
"source",
"attributes"
],
ExportDefaultDeclaration: [
"declaration"
],
ExportNamedDeclaration: [
"declaration",
"specifiers",
"source"
"source",
"attributes"
],
ExportSpecifier: [
"exported",
Expand Down Expand Up @@ -94565,15 +94576,21 @@ function requireEslintVisitorKeys () {
"consequent",
"alternate"
],
ImportAttribute: [
"key",
"value"
],
ImportDeclaration: [
"specifiers",
"source"
"source",
"attributes"
],
ImportDefaultSpecifier: [
"local"
],
ImportExpression: [
"source"
"source",
"options"
],
ImportNamespaceSpecifier: [
"local"
Expand Down Expand Up @@ -95582,7 +95599,7 @@ function requireEspree () {
};
};

const version$1 = "10.2.0";
const version$1 = "10.3.0";

/**
* @fileoverview Main Espree file that converts Acorn into Esprima output.
Expand Down
2 changes: 1 addition & 1 deletion bundle/putout.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@putout/bundle",
"version": "3.18.3",
"version": "3.18.4",
"type": "module",
"author": "coderaiser <[email protected]> (https://github.com/coderaiser)",
"description": "🐊Putout bundle suitable for Deno or Browsers",
Expand Down

0 comments on commit b97c7ec

Please sign in to comment.