-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# UXR | ||
[![npm][npm]][npm-url] | ||
[![tests][tests]][tests-url] | ||
[![coverage][cover]][cover-url] | ||
|
||
A minimal in mind library for DOM related routines and element selections. UXR wraps some most used methods like CSS Classes, Event Management, Data Management, Attribute selections/updates. Supports chaining and plugins. | ||
|
||
For the sake of minimality, pure JavaScript methods than can directly callable on a UXR object are not wrapped. Like `map`, `forEach`, `reduce` etc. | ||
|
||
|
||
[npm]: https://img.shields.io/npm/v/uxr.svg | ||
[npm-url]: https://npmjs.com/package/uxr | ||
|
||
[tests]: http://img.shields.io/travis/bcinarli/uxr.svg | ||
[tests-url]: https://travis-ci.org/bcinarli/uxr | ||
|
||
[cover]: https://codecov.io/gh/bcinarli/uxr/branch/master/graph/badge.svg | ||
[cover-url]: https://codecov.io/gh/bcinarli/uxr |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,6 +14,7 @@ let flags = { | |
|
||
const release = () => { | ||
concat({release: true}); | ||
minify(); | ||
}; | ||
|
||
const build = () => { | ||
|