Skip to content
This repository was archived by the owner on Dec 30, 2022. It is now read-only.

Commit 5fc1915

Browse files
committed
feat(powered-by): create powered by component
Closes: #51
1 parent 58c94c7 commit 5fc1915

File tree

4 files changed

+73
-0
lines changed

4 files changed

+73
-0
lines changed
+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
Vue Algolia Powered By
2+
---
3+
4+
A component that helps you quickly add the "powered by Algolia" mention that is required on the free plan.
5+
6+
## Usage
7+
8+
Basic usage:
9+
10+
```html
11+
<algolia-powered-by></algolia-powered-by>
12+
```
13+
14+
## CSS Classes
15+
16+
| ClassName | Description |
17+
|----------------------|--------------------------------------------------|
18+
| alg-powered-by | Container class |
19+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"name": "vue-algolia-powered-by",
3+
"version": "0.0.0",
4+
"files": [
5+
"dist"
6+
],
7+
"main": "dist/vue-algolia-powered-by.common.js",
8+
"module": "dist/vue-algolia-powered-by.esm.js",
9+
"jsnext:main": "dist/vue-algolia-powered-by.esm.js",
10+
"unpkg": "dist/vue-algolia-powered-by.js",
11+
"scripts": {
12+
"build": "yarn build-umd && yarn build-es && yarn build-cjs",
13+
"build:umd": "rollup -c ../../build/rollup.umd.config.js",
14+
"build:es": "rollup -c ../../build/rollup.es.config.js",
15+
"build:cjs": "rollup -c ../../build/rollup.cjs.config.js"
16+
},
17+
"dependencies": {
18+
"vue-algolia-component": "*"
19+
},
20+
"peerDependencies": {
21+
"vue": "^2.2.2"
22+
}
23+
}

0 commit comments

Comments
 (0)