Skip to content

Commit 04938a7

Browse files
committed
add module to package.json, bump version
1 parent 7dc8632 commit 04938a7

File tree

3 files changed

+13
-12
lines changed

3 files changed

+13
-12
lines changed

package-lock.json

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

package.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
{
22
"name": "countup.js",
33
"description": "Animates a numerical value by counting to it",
4-
"version": "2.0.7",
4+
"version": "2.0.8",
55
"license": "MIT",
6-
"main": "./dist/countUp.min.js",
6+
"main": "./dist/countUp.umd.js",
7+
"module": "./dist/countUp.min.js",
78
"author": "@inorganik",
89
"repository": {
910
"type": "git",
@@ -29,10 +30,10 @@
2930
"gulp-uglify": "^3.0.2",
3031
"http-server": "^0.12.3",
3132
"jest": "^24.9.0",
32-
"rollup": "^2.38.5",
33+
"rollup": "^2.54.0",
3334
"ts-jest": "^24.3.0",
3435
"tslint": "^5.20.1",
35-
"typescript": "^3.9.9",
36+
"typescript": "^3.9.10",
3637
"uglify-es": "^3.3.9"
3738
},
3839
"types": "./dist/countUp.d.ts"

src/countUp.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export interface CountUpOptions { // (default)
1919
// playground: stackblitz.com/edit/countup-typescript
2020
export class CountUp {
2121

22-
version = '2.0.7';
22+
version = '2.0.8';
2323
private defaults: CountUpOptions = {
2424
startVal: 0,
2525
decimalPlaces: 0,

0 commit comments

Comments
 (0)