Skip to content

Commit c8ebbc0

Browse files
committed
first release :)
1 parent 9d675c0 commit c8ebbc0

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# UXR
2+
[![npm][npm]][npm-url]
3+
[![tests][tests]][tests-url]
4+
[![coverage][cover]][cover-url]
5+
6+
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.
7+
8+
For the sake of minimality, pure JavaScript methods than can directly callable on a UXR object are not wrapped. Like `map`, `forEach`, `reduce` etc.
9+
10+
11+
[npm]: https://img.shields.io/npm/v/uxr.svg
12+
[npm-url]: https://npmjs.com/package/uxr
13+
14+
[tests]: http://img.shields.io/travis/bcinarli/uxr.svg
15+
[tests-url]: https://travis-ci.org/bcinarli/uxr
16+
17+
[cover]: https://codecov.io/gh/bcinarli/uxr/branch/master/graph/badge.svg
18+
[cover-url]: https://codecov.io/gh/bcinarli/uxr

build/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ let flags = {
1414

1515
const release = () => {
1616
concat({release: true});
17+
minify();
1718
};
1819

1920
const build = () => {

0 commit comments

Comments
 (0)