@opbi/ncm-preset-package
Version:
the config preset for [package] used by ncm
25 lines (18 loc) • 615 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _decorator = _interopRequireDefault(require("./decorator"));
var _constants = require("./constants");
var _utils = require("./utils");
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
/**
* An example function just to show the build and ci pipeline works.
*
* @returns {string} Hello world.
*/
var _default = () => (0, _decorator.default)({
validator: _utils.allStrings
})(_utils.join)(_constants.FOO, _constants.BAR);
exports.default = _default;