Skip to content

Commit cbea97b

Browse files
NeuralLineNeuralLine
NeuralLine
authored and
NeuralLine
committed
Holo 0.1.1 published to NPM
1 parent d111b65 commit cbea97b

32 files changed

+4260
-3982
lines changed

.babelrc

-15
This file was deleted.

.babelrc.js

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
/** @format */
2+
3+
const {NODE_ENV} = process.env
4+
5+
module.exports = {
6+
presets: [
7+
[
8+
'@babel/env',
9+
{
10+
targets: {
11+
browsers: ['ie >= 11'],
12+
},
13+
exclude: ['transform-async-to-generator', 'transform-regenerator'],
14+
modules: false,
15+
loose: true,
16+
},
17+
],
18+
],
19+
}

.gitattributes

-2
This file was deleted.

.prettierrc

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"printWidth": 160,
3+
"semi": false,
4+
"singleQuote": true,
5+
"trailingComma": "all",
6+
"bracketSpacing": false,
7+
"jsxBracketSameLine": true,
8+
"arrowParens": "avoid",
9+
"insertPragma": true,
10+
"tabWidth": 2,
11+
"useTabs": false
12+
}

README.md

+73-15
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,79 @@
1-
# holo-carousel / slider 2019
1+
<!-- @format -->
22

3+
# HOLO
34

4-
info:{
5+
```sh
6+
Neural Line
7+
Lightweight carousel for javascript and react apps
8+
H.O.L.O - C.A.R.O.U.S.E.L
59

6-
github: 'https://github.com/NeuralLine/holo-crousel',
7-
description: 'lightweight carousel for javascript and react apps',
8-
demo link: 'https://holo-carousel.firebaseapp.com/'
10+
```
911

10-
},
11-
disclaimer: {
12+
> One manager for intricate of carousels
1213
13-
made in mind for modern browsers
14-
15-
},
16-
finally{
17-
18-
export default ('Thank You')
19-
20-
}
14+
[![NPM Version][npm-image]][npm-url]
15+
[![NPM Version][npm-download]][npm-url]
16+
[![NPM Version][npm-size]][npm-url]
2117

18+
## Installation
19+
20+
```sh
21+
npm i holo-carousel
22+
yarn add holo-carousel
23+
```
24+
25+
## Usage example
26+
27+
```js
28+
import {Holo} from 'holo-carousel'
29+
30+
//eg simple use:
31+
Holo.INIT()
32+
Holo.AUTO('holo-carousel')
33+
```
34+
35+
## Holo examples
36+
37+
[holo-carousel ES6](https://holo-carousel.firebaseapp.com/)
38+
39+
## Made with Holo git projects
40+
41+
[Holo carousel](https://github.com/neuralline/holo-carousel)
42+
43+
## Project pipeline
44+
45+
- 1.0.0 initial commit
46+
47+
- adding functionality
48+
- useability
49+
- compatibility with varies mvc
50+
51+
- 1.2.0 optimization
52+
53+
- increase performance
54+
- testability
55+
- reliability
56+
57+
## Meta
58+
59+
Distributed under the MIT license. See `LICENSE` for more information.
60+
61+
[https://github.com/NeuralLine](https://github.com/NeuralLine)
62+
63+
## Contributing
64+
65+
1. Fork it (<https://www.npmjs.com/package/holo-carousel/fork>)
66+
67+
```sh
68+
69+
Q0.0U0.0A0.0N0.0T0.0U0.0M0 - I0.0N0.0C0.0E0.0P0.0T0.0I0.0O0.0N0.0S0
70+
Lightweight carousel for javascript and react apps 2019
71+
72+
```
73+
74+
<!-- Markdown link & img dfn's -->
75+
76+
[npm-image]: https://img.shields.io/npm/v/holo-carousel.svg?style=flat
77+
[npm-url]: https://www.npmjs.com/package/holo-carousel
78+
[npm-download]: https://img.shields.io/npm/dt/holo-carousel.svg?style=flat
79+
[npm-size]: https://img.shields.io/bundlephobia/min/holo-carousel.svg?style=flat

0 commit comments

Comments
 (0)