Skip to content
This repository has been archived by the owner on Dec 10, 2019. It is now read-only.

Commit

Permalink
Merge pull request #23 from theZieger/fix-define-call
Browse files Browse the repository at this point in the history
fixes #20 and bumps version to 0.8.1
  • Loading branch information
Eric Zieger authored Aug 4, 2017
2 parents 4be5617 + 3d1b545 commit 3849511
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# utilities v0.8.0 [![Build Status](https://scrutinizer-ci.com/g/theZieger/utilitiesjs/badges/build.png?b=master)](https://scrutinizer-ci.com/g/theZieger/utilitiesjs/build-status/master) [![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/theZieger/utilitiesjs/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/theZieger/utilitiesjs/?branch=master) [![Code Coverage](https://scrutinizer-ci.com/g/theZieger/utilitiesjs/badges/coverage.png?b=master)](https://scrutinizer-ci.com/g/theZieger/utilitiesjs/?branch=master)
# utilities v0.8.1 [![Build Status](https://scrutinizer-ci.com/g/theZieger/utilitiesjs/badges/build.png?b=master)](https://scrutinizer-ci.com/g/theZieger/utilitiesjs/build-status/master) [![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/theZieger/utilitiesjs/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/theZieger/utilitiesjs/?branch=master) [![Code Coverage](https://scrutinizer-ci.com/g/theZieger/utilitiesjs/badges/coverage.png?b=master)](https://scrutinizer-ci.com/g/theZieger/utilitiesjs/?branch=master)

> Utility functions for front-end JavaScript development.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "utilitiesjs",
"version": "0.8.0",
"version": "0.8.1",
"description": "Utility functions for front-end JavaScript development.",
"main": "utilities.js",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions utilities.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/*!
* utilities.js | v0.8.0 | Utility functions for front-end JavaScript development
* utilities.js | v0.8.1 | Utility functions for front-end JavaScript development
* Copyright (c) 2017 Eric Zieger (MIT license)
* https://github.com/theZieger/utilitiesjs/blob/master/LICENSE
*/
(function(root, factory) {
/** global: define */
if (typeof define === "function" && define.amd) {
define(["utilities"], factory);
define('utilitiesjs', factory);
/** global: module */
} else if (typeof module === "object" && module.exports) {
module.exports = factory();
Expand Down

0 comments on commit 3849511

Please sign in to comment.