Skip to content

Commit

Permalink
replace gulp&webpack by rollup, update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Kryazhev Alexey committed Jun 28, 2017
1 parent 7a9b002 commit 9b29e4d
Show file tree
Hide file tree
Showing 19 changed files with 2,200 additions and 4,104 deletions.
2 changes: 1 addition & 1 deletion .babelrc
Expand Up @@ -8,5 +8,5 @@
}
]
],
"plugins": ["transform-object-rest-spread", "transform-es2015-modules-umd"]
"plugins": ["transform-object-rest-spread", "external-helpers"]
}
31 changes: 16 additions & 15 deletions .eslintrc
@@ -1,23 +1,24 @@
{
"extends": "eslint:recommended",
"extends": "eslint:recommended",

"parser": "babel-eslint",
"parser": "babel-eslint",

"env": {
"browser": true,
"es6": true
},
"env": {
"browser": true,
"es6": true,
"mocha": true
},

"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",

"ecmaFeatures": {
"classes": true
},
"ecmaFeatures": {
"classes": true
},
},

"globals": {
"IMask": false
}
"globals": {
"IMask": false
}
}
13 changes: 12 additions & 1 deletion README.md
Expand Up @@ -12,9 +12,14 @@ May coming soon:

* jQuery integration
* composite mask (for date, datetime etc.)
* unit tests
* more unit tests
* ?RTL

## Build & test
`npm run build`

`npm run test`

## Compatibility
IE11+ [need support older?](https://unmanner.github.io/imaskjs/#under-the-hood)

Expand All @@ -23,6 +28,12 @@ IE11+ [need support older?](https://unmanner.github.io/imaskjs/#under-the-hood)

## Changes

### 0.4.0
* **breaking change**: add _quote_ (') to definitions to prevent symbols shift back. Should be escaped from now.
* fix some bugs with cursor
* write some tests
* use _rollup_ for build and test

### 0.3.0
* add mobile support
* fix some bugs with cursor
Expand Down

0 comments on commit 9b29e4d

Please sign in to comment.