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

feat: Migrate codebase to typescript #191

Merged
merged 2 commits into from
May 9, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ jobs:
build:
working_directory: ~/project
docker:
- image: alekzonder/puppeteer # base image: node/8-slim
- image: alekzonder/puppeteer # base pluginImage: node/8-slim
steps:
- checkout
- run:
Expand Down
38 changes: 9 additions & 29 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
<div class="text-xs-center" align="center" style="margin: 20px">
<img src="docs/assets/images/logo.png">
<img src="logo.png">
</div>

## Introduction

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.**

With rollup you can break your application into reusable modules.
Expand All @@ -11,53 +12,32 @@ With rollup you can break your application into reusable modules.
<a href="https://circleci.com/gh/vuejs/rollup-plugin-vue">
<img src="https://circleci.com/gh/vuejs/rollup-plugin-vue.svg?style=svg" alt="Build Status" />
</a>
<a href="http://standardjs.com">
<img src="https://img.shields.io/badge/code%20style-standard-brightgreen.svg" alt="Code Style" />
</a>
<a href="https://coveralls.io/github/znck/rollup-plugin-vue?branch=master">
<img src="https://coveralls.io/repos/github/znck/rollup-plugin-vue/badge.svg?branch=master&style=flat-square" alt="Coverage Status" />
</a>
<a href="https://www.codacy.com/app/vuejs/rollup-plugin-vue">
<img src="https://api.codacy.com/project/badge/grade/e3402df0135240c29a1d25bab93932a0"/>
</a>
<a href="LICENSE">
<img src="https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square" alt="Software License" />
</a>
<a href="https://npmjs.org/package/rollup-plugin-vue">
<img src="https://img.shields.io/npm/v/rollup-plugin-vue.svg?style=flat-square" alt="NPM" />
</a>
<a href="https://github.com/vuejs/rollup-plugin-vue/releases">
<img src="https://img.shields.io/github/release/vuejs/rollup-plugin-vue.svg?style=flat-square" alt="Latest Version" />
</a>

<a href="https://github.com/vuejs/rollup-plugin-vue/issues">
<img src="https://img.shields.io/github/issues/vuejs/rollup-plugin-vue.svg?style=flat-square" alt="Issues" />
</a>
</p>

## Usage

```js
import vue from 'rollup-plugin-vue'

export default {
export default {
entry: 'main.js',
plugins: [
vue(/* options */)
]
plugins: [vue(/* options */)]
}
```
```

## Security

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

## Credits

- [Rahul Kadyan](https://github.com/znck)
- [Thomas Ghysels](https://github.com/thgh)
- [Eduardo San Martin Morote](https://github.com/posva)
- [All Contributors][link-contributors]
* [Rahul Kadyan](https://github.com/znck)
* [Thomas Ghysels](https://github.com/thgh)
* [Eduardo San Martin Morote](https://github.com/posva)
* [All Contributors][link-contributors]

## License

Expand Down
Empty file removed docs/.nojekyll
Empty file.
54 changes: 0 additions & 54 deletions docs/README.md

This file was deleted.

Binary file removed docs/assets/images/opengraph.png
Binary file not shown.
Binary file removed docs/assets/images/twitter.png
Binary file not shown.
Binary file removed docs/assets/images/vue-component.png
Binary file not shown.
58 changes: 0 additions & 58 deletions docs/config.js

This file was deleted.

Loading