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

Commit 758e330

Browse files
authored
feat: Migrate codebase to typescript (#191)
* feat: Migrate codebase to typescript * fix: Add puppeteer missing types
1 parent 2806494 commit 758e330

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+679
-14652
lines changed

.circleci/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ jobs:
33
build:
44
working_directory: ~/project
55
docker:
6-
- image: alekzonder/puppeteer # base image: node/8-slim
6+
- image: alekzonder/puppeteer # base pluginImage: node/8-slim
77
steps:
88
- checkout
99
- run:

README.md

+9-29
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
<div class="text-xs-center" align="center" style="margin: 20px">
2-
<img src="docs/assets/images/logo.png">
2+
<img src="logo.png">
33
</div>
44

55
## Introduction
6+
67
As vue-loader is for webpack and vueify is for browserify, similarly its for rollup. As we know, webpack and browserify concat stuff and make it runnable in browser. Its difficult to share .vue components. **Now roll your [Vue](http://vuejs.org/) components.**
78

89
With rollup you can break your application into reusable modules.
@@ -11,53 +12,32 @@ With rollup you can break your application into reusable modules.
1112
<a href="https://circleci.com/gh/vuejs/rollup-plugin-vue">
1213
<img src="https://circleci.com/gh/vuejs/rollup-plugin-vue.svg?style=svg" alt="Build Status" />
1314
</a>
14-
<a href="http://standardjs.com">
15-
<img src="https://img.shields.io/badge/code%20style-standard-brightgreen.svg" alt="Code Style" />
16-
</a>
1715
<a href="https://coveralls.io/github/znck/rollup-plugin-vue?branch=master">
1816
<img src="https://coveralls.io/repos/github/znck/rollup-plugin-vue/badge.svg?branch=master&style=flat-square" alt="Coverage Status" />
1917
</a>
20-
<a href="https://www.codacy.com/app/vuejs/rollup-plugin-vue">
21-
<img src="https://api.codacy.com/project/badge/grade/e3402df0135240c29a1d25bab93932a0"/>
22-
</a>
23-
<a href="LICENSE">
24-
<img src="https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square" alt="Software License" />
25-
</a>
26-
<a href="https://npmjs.org/package/rollup-plugin-vue">
27-
<img src="https://img.shields.io/npm/v/rollup-plugin-vue.svg?style=flat-square" alt="NPM" />
28-
</a>
29-
<a href="https://github.com/vuejs/rollup-plugin-vue/releases">
30-
<img src="https://img.shields.io/github/release/vuejs/rollup-plugin-vue.svg?style=flat-square" alt="Latest Version" />
31-
</a>
32-
33-
<a href="https://github.com/vuejs/rollup-plugin-vue/issues">
34-
<img src="https://img.shields.io/github/issues/vuejs/rollup-plugin-vue.svg?style=flat-square" alt="Issues" />
35-
</a>
3618
</p>
3719

3820
## Usage
3921

4022
```js
4123
import vue from 'rollup-plugin-vue'
4224

43-
export default {
25+
export default {
4426
entry: 'main.js',
45-
plugins: [
46-
vue(/* options */)
47-
]
27+
plugins: [vue(/* options */)]
4828
}
49-
```
29+
```
5030

5131
## Security
5232

5333
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
5434

5535
## Credits
5636

57-
- [Rahul Kadyan](https://github.com/znck)
58-
- [Thomas Ghysels](https://github.com/thgh)
59-
- [Eduardo San Martin Morote](https://github.com/posva)
60-
- [All Contributors][link-contributors]
37+
* [Rahul Kadyan](https://github.com/znck)
38+
* [Thomas Ghysels](https://github.com/thgh)
39+
* [Eduardo San Martin Morote](https://github.com/posva)
40+
* [All Contributors][link-contributors]
6141

6242
## License
6343

docs/.nojekyll

Whitespace-only changes.

docs/README.md

-54
This file was deleted.

docs/assets/images/opengraph.png

-41.6 KB
Binary file not shown.

docs/assets/images/twitter.png

-10.7 KB
Binary file not shown.

docs/assets/images/vue-component.png

-119 KB
Binary file not shown.

docs/config.js

-58
This file was deleted.

0 commit comments

Comments
 (0)