Skip to content

Commit 08bfc12

Browse files
authored
Merge pull request #4 from coderdiaz/build
Build
2 parents 5d521a4 + 1731dec commit 08bfc12

15 files changed

+1299
-55
lines changed

.gitignore

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
.DS_Store
22
node_modules/
3-
dist/
4-
public/
3+
public/dist/
54
coverage/
65
npm-debug.log
76
yarn-error.log

README.md

+13-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ $ npm i -S vue-tiny-pagination
3434
@tiny:change-page="changePage"></tiny-pagination>
3535
</div>
3636
```
37-
37+
You can import the component and define this in specific section:
3838
```javascript
3939
import {TinyPagination} from 'vue-tiny-pagination'
4040

@@ -56,6 +56,18 @@ new Vue({
5656
}
5757
});
5858
```
59+
or define the component on Global application
60+
```javascript
61+
import TinyPagination from 'vue-tiny-pagination'
62+
Vue.use(TinyPagination)
63+
```
64+
65+
For use in browser can you use Unpkg:
66+
```
67+
https://unpkg.com/vue-tiny-pagination@latest/dist/vue-tiny-pagination.min.js
68+
```
69+
70+
Example in browser here: https://jsfiddle.net/coderdiaz/g5vLex83/3/
5971

6072
### Documentation
6173

build/rollup.config.js

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
import vue from 'rollup-plugin-vue'
2+
import buble from 'rollup-plugin-buble'
3+
import uglify from 'rollup-plugin-uglify-es'
4+
5+
export default {
6+
input: 'index.js',
7+
output: {
8+
name: 'VueTinyPagination',
9+
exports: 'named'
10+
},
11+
plugins: [
12+
vue({
13+
css: true,
14+
compileTemplate: true
15+
}),
16+
buble(),
17+
uglify()
18+
]
19+
}

dist/vue-tiny-pagination.esm.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/vue-tiny-pagination.min.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/vue-tiny-pagination.umd.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

index.js

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
import TinyPagination from './src/components/TinyPagination.vue'
2+
3+
export function install (Vue) {
4+
if (install.installed) return
5+
install.installed = true
6+
Vue.component('TinyPagination', TinyPagination)
7+
}
8+
9+
const plugin = {
10+
install
11+
}
12+
13+
let GlobalVue = null
14+
if (typeof window !== 'undefined') {
15+
GlobalVue = window.Vue
16+
} else if (typeof global !== 'undefined') {
17+
GlobalVue = global.Vue
18+
}
19+
if (GlobalVue) {
20+
GlobalVue.use(plugin)
21+
}
22+
23+
export { TinyPagination }
24+
export default plugin

0 commit comments

Comments
 (0)