Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
rollup-plugin-vue
Advanced tools
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 components.
With rollup you can break your application into reusable modules.
Working on next version. See changes
Development milestones
jade
for <template>
, scss
for <style>
, coffee
for <script>
.<template>
and <style>
as dependencies.npm install --save-dev rollup-plugin-vue
import {rollup} from 'rollup';
import vue from 'rollup-plugin-vue';
rollup({
entry: 'index.js',
plugins: [vue()]
});
Below is how you can use it from the command line with Bublé.
Run rollup -c
and it will find the config.
// rollup.config.js
import vue from 'rollup-plugin-vue'
import buble from 'rollup-plugin-buble' // rollup-plugin-babel also works
export default {
entry: 'index.js',
plugins: [
vue(),
buble()
]
}
css
vue({
// Filename to write all styles to
css: 'bundle.scss',
// Callback that will be called ongenerate with two arguments:
// - styles: the contents of all style tags combined
// - styleNodes: an array of style objects: [{lang: 'css', content: 'body { color: green }'}]
css: function (styles, styleNodes) {
writeFileSync(cssPath, styles)
}
// Disable any style output or callbacks
css: false,
// Default behaviour is to write all styles to the bundle destination where .js is replaced by .css
css: null
})
compileTemplate
vue({
// Compile templates to render functions (Vue 2 only)
compileTemplate: true,
})
Please see CHANGELOG for more information what has changed recently.
$ npm run test
Please see CONTRIBUTING and CONDUCT for details.
If you discover any security related issues, please email hi@znck.me instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.
FAQs
> Roll Vue 3 SFCs with Rollup.
The npm package rollup-plugin-vue receives a total of 21,696 weekly downloads. As such, rollup-plugin-vue popularity was classified as popular.
We found that rollup-plugin-vue demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.