Skip to content

Commit

Permalink
chore(release): cut the v0.3.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
char0n committed Feb 16, 2017
1 parent 0b6a839 commit 37b8c11
Show file tree
Hide file tree
Showing 9 changed files with 967 additions and 723 deletions.
1 change: 1 addition & 0 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
/npm-debug.log
/srcipts
/test
/.babelrc
/.editorconfig
/.eslintignore
/.eslintrc
Expand Down
18 changes: 14 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,20 @@
<a name="0.3.0"></a>
# [0.3.0](https://github.com/char0n/ramda-adjunct/compare/v0.2.0...v0.3.0) (2017-02-16)


### Features

* add isArray ([5bf4ab9](https://github.com/char0n/ramda-adjunct/commit/5bf4ab9))
* add isBoolean, isNotBoolean ([5400527](https://github.com/char0n/ramda-adjunct/commit/5400527))
* add isNotArray ([17d11c2](https://github.com/char0n/ramda-adjunct/commit/17d11c2))
* add isNotNil ([f49962a](https://github.com/char0n/ramda-adjunct/commit/f49962a))



<a name="0.2.0"></a>
# [0.2.0](https://github.com/char0n/ramda-adjunct/compare/v0.1.0...v0.2.0) (2017-02-13)

* **build:** add support for older node versions
* **build** add various dist files
* **build** make enhancements in entire infra
* **test:** add tests that run in browsers


<a name="0.1.0"></a>
# [0.1.0](https://github.com/char0n/ramda-adjunct/compare/v0.0.1...v0.1.0) (2017-02-09)
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ This just means that our tests run on these versions.
- [0.0.1](https://char0n.github.io/ramda-adjunct/0.0.1)
- [0.1.0](https://char0n.github.io/ramda-adjunct/0.1.0)
- [0.2.0](https://char0n.github.io/ramda-adjunct/0.2.0)
- [0.3.0](https://char0n.github.io/ramda-adjunct/0.3.0)
- Latest: https://char0n.github.io/ramda-adjunct

## Development
Expand Down
141 changes: 113 additions & 28 deletions dist/RA.node.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ return /******/ (function(modules) { // webpackBootstrap
/******/ __webpack_require__.p = "";

/******/ // Load entry module and return exports
/******/ return __webpack_require__(__webpack_require__.s = 8);
/******/ return __webpack_require__(__webpack_require__.s = 11);
/******/ })
/************************************************************************/
/******/ ([
Expand All @@ -89,9 +89,7 @@ module.exports = __WEBPACK_EXTERNAL_MODULE_0__;
"use strict";


var isArrayPolyfill = function isArrayPolyfill(val) {
return Object.prototype.toString.call(val) === '[object Array]';
};
var isArray = __webpack_require__(10);

/**
* Checks if input `value` is Array
Expand All @@ -106,13 +104,12 @@ var isArrayPolyfill = function isArrayPolyfill(val) {
* @see {@link RA.isNotArray|isNotArray}
* @example
*
* RA.isArray([1, 2, 3]); // true
* RA.isArray({foo: 123}); // false
* RA.isArray('foobar'); // false
* RA.isArray(undefined); // false
* RA.isArray([]); //=> true
* RA.isArray(null); //=> false
* RA.isArray({}); //=> false
*/

module.exports = Array.isArray || isArrayPolyfill;
module.exports = isArray;

/***/ }),
/* 2 */
Expand All @@ -121,6 +118,36 @@ module.exports = Array.isArray || isArrayPolyfill;
"use strict";


var _require = __webpack_require__(0),
is = _require.is;

/**
* Checks if input `value` is Array
*
* @func isBoolean
* @memberOf RA
* @since v0.3.0
* @category Type
* @sig * -> Boolean
* @param {*} val The value to test
* @return {Boolean}
* @see {@link RA.isNotBoolean|isNotBoolean}
* @example
*
* RA.isBoolean(false); //=> true
* RA.isBoolean(true); //=> true
* RA.isBoolean(null); //=> false
*/

module.exports = is(Boolean);

/***/ }),
/* 3 */
/***/ (function(module, exports, __webpack_require__) {

"use strict";


var _require = __webpack_require__(0),
equals = _require.equals;

Expand All @@ -146,7 +173,7 @@ var _require = __webpack_require__(0),
module.exports = equals(null);

/***/ }),
/* 3 */
/* 4 */
/***/ (function(module, exports, __webpack_require__) {

"use strict";
Expand Down Expand Up @@ -177,7 +204,7 @@ var _require = __webpack_require__(0),
module.exports = equals(undefined);

/***/ }),
/* 4 */
/* 5 */
/***/ (function(module, exports, __webpack_require__) {

"use strict";
Expand All @@ -201,16 +228,47 @@ var isArray = __webpack_require__(1);
* @see {@link RA.isArray|isArray}
* @example
*
* RA.isNotArray([1, 2, 3]); // false
* RA.isNotArray({foo: 123}); // true
* RA.isNotArray('foobar'); // true
* RA.isNotArray(undefined); // true
* RA.isNotArray([]); //=> false
* RA.isNotArray(null); //=> true
* RA.isNotArray({}); //=> true
*/

module.exports = complement(isArray);

/***/ }),
/* 5 */
/* 6 */
/***/ (function(module, exports, __webpack_require__) {

"use strict";


var _require = __webpack_require__(0),
complement = _require.complement;

var isBoolean = __webpack_require__(2);

/**
* Checks if input `value` is complement of Boolean
*
* @func isNotBoolean
* @memberOf RA
* @since v0.3.0
* @category Type
* @sig * -> Boolean
* @param {*} val The value to test
* @return {Boolean}
* @see {@link RA.isBoolean|isBoolean}
* @example
*
* RA.isNotBoolean(false); //=> false
* RA.isNotBoolean(true); //=> false
* RA.isNotBoolean(null); //=> true
*/

module.exports = complement(isBoolean);

/***/ }),
/* 7 */
/***/ (function(module, exports, __webpack_require__) {

"use strict";
Expand Down Expand Up @@ -243,7 +301,7 @@ var _require = __webpack_require__(0),
module.exports = complement(isNil);

/***/ }),
/* 6 */
/* 8 */
/***/ (function(module, exports, __webpack_require__) {

"use strict";
Expand All @@ -252,7 +310,7 @@ module.exports = complement(isNil);
var _require = __webpack_require__(0),
complement = _require.complement;

var isNull = __webpack_require__(2);
var isNull = __webpack_require__(3);

/**
* Checks if input `value` is complement of `null`
Expand All @@ -276,7 +334,7 @@ var isNotNull = complement(isNull);
module.exports = isNotNull;

/***/ }),
/* 7 */
/* 9 */
/***/ (function(module, exports, __webpack_require__) {

"use strict";
Expand All @@ -285,7 +343,7 @@ module.exports = isNotNull;
var _require = __webpack_require__(0),
complement = _require.complement;

var isUndefined = __webpack_require__(3);
var isUndefined = __webpack_require__(4);

/**
* Checks if input `value` is complement `undefined`
Expand All @@ -307,19 +365,44 @@ var isUndefined = __webpack_require__(3);
module.exports = complement(isUndefined);

/***/ }),
/* 8 */
/* 10 */
/***/ (function(module, exports) {

/**
* Tests whether or not an object is an array.
*
* @private
* @param {*} val The object to test.
* @return {Boolean} `true` if `val` is an array, `false` otherwise.
* @example
*
* _isArray([]); //=> true
* _isArray(null); //=> false
* _isArray({}); //=> false
*/
module.exports = Array.isArray || function _isArray(val) {
return (val != null &&
val.length >= 0 &&
Object.prototype.toString.call(val) === '[object Array]');
};


/***/ }),
/* 11 */
/***/ (function(module, exports, __webpack_require__) {

"use strict";


var isNotUndefined = __webpack_require__(7);
var isUndefined = __webpack_require__(3);
var isNull = __webpack_require__(2);
var isNotNull = __webpack_require__(6);
var isNotNil = __webpack_require__(5);
var isNotUndefined = __webpack_require__(9);
var isUndefined = __webpack_require__(4);
var isNull = __webpack_require__(3);
var isNotNull = __webpack_require__(8);
var isNotNil = __webpack_require__(7);
var isArray = __webpack_require__(1);
var isNotArray = __webpack_require__(4);
var isNotArray = __webpack_require__(5);
var isBoolean = __webpack_require__(2);
var isNotBoolean = __webpack_require__(6);

/**
* @namespace RA
Expand All @@ -331,7 +414,9 @@ module.exports = {
isNotNull: isNotNull,
isNotNil: isNotNil,
isArray: isArray,
isNotArray: isNotArray
isNotArray: isNotArray,
isBoolean: isBoolean,
isNotBoolean: isNotBoolean
};

/***/ })
Expand Down
2 changes: 1 addition & 1 deletion dist/RA.node.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 37b8c11

Please sign in to comment.