Skip to content

Commit

Permalink
chore: package: v1.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
coderaiser committed Jul 13, 2022
1 parent 2a72fe0 commit a7efabc
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 3 deletions.
6 changes: 6 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
2022.07.13, v1.1.6

fix:
- @putout/plugin-putout: exports


2022.07.13, v1.1.5

fix:
Expand Down
27 changes: 25 additions & 2 deletions bundle/plugin-putout.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
import require$$0$1 from '@putout/bundle';

function _mergeNamespaces(n, m) {
m.forEach(function (e) {
e && typeof e !== 'string' && !Array.isArray(e) && Object.keys(e).forEach(function (k) {
if (k !== 'default' && !(k in n)) {
var d = Object.getOwnPropertyDescriptor(e, k);
Object.defineProperty(n, k, d.get ? d : {
enumerable: true,
get: function () { return e[k]; }
});
}
});
});
return Object.freeze(n);
}

var addArgs_1;
var hasRequiredAddArgs;

Expand Down Expand Up @@ -3190,11 +3205,13 @@ function normalize (path) {
return path;
}

var lib = {};

const getRule = (a) => ({
[a]: createCommonjsRequire("/node_modules/@putout/plugin-putout/lib")(`./${a}`),
});

var rules = {
var rules = lib.rules = {
...getRule('apply-processors-destructuring'),
...getRule('apply-async-formatter'),
...getRule('apply-create-test'),
Expand Down Expand Up @@ -3230,4 +3247,10 @@ var rules = {
...getRule('includer'),
};

export { rules };
var pluginPutout = /*#__PURE__*/_mergeNamespaces({
__proto__: null,
rules: rules,
'default': lib
}, [lib]);

export { pluginPutout as 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": "1.1.5",
"version": "1.1.6",
"type": "module",
"commitType": "colon",
"author": "coderaiser <[email protected]> (https://github.com/coderaiser)",
Expand Down

0 comments on commit a7efabc

Please sign in to comment.