Skip to content

Commit b50e2ce

Browse files
committed
Fix webpack build, update dependencies to fix Travis build
1 parent aa5b1fd commit b50e2ce

19 files changed

+873
-292
lines changed

.babelrc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@
44
],
55
"plugins": [
66
"add-module-exports"
7-
]
7+
],
8+
"sourceMaps": true
89
}

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
components
22
build
33
node_modules
4+
tmp
45
.settings
56
.project

Gruntfile.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,9 @@ module.exports = function(grunt) {
6363
minify: {
6464
src: "dist/chronoman.js",
6565
dest: "dist/chronoman.min.js"
66+
},
67+
options: {
68+
sourceMap: true
6669
}
6770
},
6871

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ timer.stop();
1818

1919
[![NPM version](https://badge.fury.io/js/chronoman.png)](http://badge.fury.io/js/chronoman)
2020
[![Build Status](https://secure.travis-ci.org/gamtiq/chronoman.png?branch=master)](http://travis-ci.org/gamtiq/chronoman)
21-
[![Built with Grunt](https://cdn.gruntjs.com/builtwith.png)](http://gruntjs.com/)
21+
[![Built with Grunt](https://gruntjs.com/cdn/builtwith.png)](http://gruntjs.com/)
2222

2323
## Installation
2424

dist/chronoman.common.js

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/chronoman.common.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/chronoman.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -686,7 +686,7 @@ Timer.prototype.onExecute = null;
686686
* <ul>
687687
* <li>timer is set as recurrent (see {@link module:chronoman~Timer#isRecurrent isRecurrent});
688688
* <li>specified quantity of repeats is not reached (see {@link module:chronoman~Timer#getRepeatQty getRepeatQty});
689-
* <li>specified repeat test is passed i.e. the test function returns true value (see {@link module:chronoman~Timer#getRepeatTest getRepeatTest});
689+
* <li>specified repeat test is passed i.e. the test function returns true value or non-negative number (see {@link module:chronoman~Timer#getRepeatTest getRepeatTest});
690690
* </ul>
691691
*
692692
* @return {Object}
@@ -760,6 +760,7 @@ Timer.prototype.toString = function () {
760760

761761
exports.default = Timer;
762762
module.exports = exports.default;
763+
//# sourceMappingURL=chronoman.common.js.map
763764

764765
return Timer;
765766
}));

dist/chronoman.min.js

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/chronoman.min.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

doc/chronoman.js.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -513,7 +513,7 @@ <h1 class="page-title">Source: chronoman.js</h1>
513513
*
514514
* @param {module:chronoman~PeriodValue | Object} [property]
515515
* Time period in milliseconds that is used to schedule related action execution
516-
* (new value for {@link module:chronoman~Timer#setPeriod period} property)
516+
* new value for {@link module:chronoman~Timer#setPeriod period} property
517517
* or object that specifies new values for timer properties (see {@link module:chronoman~Timer#setProperties setProperties}).
518518
* The current value of {@link module:chronoman~Timer#getPeriod period} property is used by default.
519519
* @return {Object}
@@ -885,9 +885,9 @@ <h4 class="modal-title">Search results</h4>
885885
</span>
886886

887887
<span class="jsdoc-message">
888-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a>
888+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.3</a>
889889

890-
on 2019-12-26T01:06:09+03:00
890+
on 2019-12-29T01:03:46+03:00
891891

892892
using the <a href="https://github.com/docstrap/docstrap">DocStrap template</a>.
893893
</span>

0 commit comments

Comments
 (0)