Skip to content

Commit 4c2ba13

Browse files
committed
release
1 parent 1c76854 commit 4c2ba13

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,7 @@ See [contributing guide](.github/CONTRIBUTING.md)
135135

136136
| Date | Version | Description |
137137
| ----------- | ------- | ----------- |
138+
| 2020-05-11 | v2.0.0 | Migrate to github actions, upgrade minimal node version and remove bower |
138139
| 2019-02-08 | v1.1.7 | Maintenance |
139140
| 2018-02-12 | v1.1.2 | Add support for step validations using big.js for more accurate calculations |
140141
| 2018-02-01 | v1.0.38 | Link function of the provided service will only be called once to prevent memory leaks |

docs/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
| Date | Version | Description |
22
| ----------- | ------- | ----------- |
3+
| 2020-05-11 | v2.0.0 | Migrate to github actions, upgrade minimal node version and remove bower |
34
| 2019-02-08 | v1.1.7 | Maintenance |
45
| 2018-02-12 | v1.1.2 | Add support for step validations using big.js for more accurate calculations |
56
| 2018-02-01 | v1.0.38 | Link function of the provided service will only be called once to prevent memory leaks |

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
"grunt-karma": "latest",
5555
"husky": "latest",
5656
"jquery": "latest",
57-
"js-project-commons": "latest",
57+
"js-project-commons": "^1.3.1",
5858
"karma": "latest",
5959
"karma-chrome-launcher": "latest",
6060
"karma-cli": "latest",

project/config/karma.conf.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
module.exports = function (config) {
44
'use strict';
55

6-
const mainJSFile = 'angular-number-input.js';
6+
const mainJSFile = require('../../package.json').main;
77
const commons = require('js-project-commons');
88

99
commons.tools.karma(config, {

0 commit comments

Comments
 (0)