Comparing version 2.0.0-alpha.3 to 2.0.0-alpha.4
@@ -6,2 +6,3 @@ export * from "./_create-function.js"; | ||
export * from "./createFunction.js"; | ||
export * from "./defineProperty.js"; | ||
export * from "./extend.js"; | ||
@@ -8,0 +9,0 @@ export * from "./format.js"; |
@@ -61,2 +61,13 @@ "use strict"; | ||
}); | ||
var _defineProperty = require("./defineProperty.js"); | ||
Object.keys(_defineProperty).forEach(function (key) { | ||
if (key === "default" || key === "__esModule") return; | ||
if (key in exports && exports[key] === _defineProperty[key]) return; | ||
Object.defineProperty(exports, key, { | ||
enumerable: true, | ||
get: function () { | ||
return _defineProperty[key]; | ||
} | ||
}); | ||
}); | ||
var _extend2 = require("./extend.js"); | ||
@@ -63,0 +74,0 @@ Object.keys(_extend2).forEach(function (key) { |
@@ -1,6 +0,6 @@ | ||
export * from "./empty.js"; | ||
export * from "./empty-function.js"; | ||
export * from "./empty-object.js"; | ||
export * from "./empty.js"; | ||
export * from "./in.js"; | ||
export * from "./string/index.js"; | ||
export * from "./type/index.js"; | ||
export * from "./string/index.js"; |
@@ -6,13 +6,2 @@ "use strict"; | ||
}); | ||
var _empty = require("./empty.js"); | ||
Object.keys(_empty).forEach(function (key) { | ||
if (key === "default" || key === "__esModule") return; | ||
if (key in exports && exports[key] === _empty[key]) return; | ||
Object.defineProperty(exports, key, { | ||
enumerable: true, | ||
get: function () { | ||
return _empty[key]; | ||
} | ||
}); | ||
}); | ||
var _emptyFunction = require("./empty-function.js"); | ||
@@ -40,2 +29,13 @@ Object.keys(_emptyFunction).forEach(function (key) { | ||
}); | ||
var _empty = require("./empty.js"); | ||
Object.keys(_empty).forEach(function (key) { | ||
if (key === "default" || key === "__esModule") return; | ||
if (key in exports && exports[key] === _empty[key]) return; | ||
Object.defineProperty(exports, key, { | ||
enumerable: true, | ||
get: function () { | ||
return _empty[key]; | ||
} | ||
}); | ||
}); | ||
var _in = require("./in.js"); | ||
@@ -52,3 +52,3 @@ Object.keys(_in).forEach(function (key) { | ||
}); | ||
var _index = require("./type/index.js"); | ||
var _index = require("./string/index.js"); | ||
Object.keys(_index).forEach(function (key) { | ||
@@ -64,3 +64,3 @@ if (key === "default" || key === "__esModule") return; | ||
}); | ||
var _index2 = require("./string/index.js"); | ||
var _index2 = require("./type/index.js"); | ||
Object.keys(_index2).forEach(function (key) { | ||
@@ -67,0 +67,0 @@ if (key === "default" || key === "__esModule") return; |
@@ -5,3 +5,3 @@ { | ||
"homepage": "https://github.com/snowyu/util-ex.js", | ||
"version": "2.0.0-alpha.3", | ||
"version": "2.0.0-alpha.4", | ||
"author": { | ||
@@ -72,3 +72,3 @@ "name": "Riceball LEE", | ||
"lint.fix": "npm run lint -- --fix", | ||
"release": "npm run clean && npm run build && npx standard-version -s", | ||
"release": "npm run clean && npm run build && git add docs && git ci -m 'docs: update API docs' && npx commit-and-tag-version -s", | ||
"release.alpha": "npm run release -- --prerelease alpha", | ||
@@ -75,0 +75,0 @@ "test": "mocha" |
@@ -6,2 +6,3 @@ export * from './_create-function.js'; | ||
export * from './createFunction.js'; | ||
export * from './defineProperty.js'; | ||
export * from './extend.js'; | ||
@@ -8,0 +9,0 @@ export * from './format.js'; |
@@ -1,7 +0,7 @@ | ||
export * from './empty.js'; | ||
// eslint-disable-next-line import/export | ||
export * from './empty-function.js'; | ||
export * from './empty-object.js'; | ||
export * from './empty.js'; | ||
export * from './in.js'; | ||
export * from './string/index.js'; | ||
export * from './type/index.js'; | ||
export * from './string/index.js'; |
210637
5814