Socket
Socket
Sign inDemoInstall

rollup-plugin-bpmnlint

Package Overview
Dependencies
19
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    rollup-plugin-bpmnlint

Convert bpmnlint config files to consumable modules


Version published
Weekly downloads
1.8K
increased by35.73%
Maintainers
1
Install size
255 kB
Created
Weekly downloads
 

Changelog

Source

0.4.1

  • FIX: resolve local bpmnlint

Readme

Source

rollup-plugin-bpmnlint

CI

Convert bpmnlint config files to consumable modules.

import { Linter } from 'bpmnlint';

import linterConfig from './.bpmnlintrc';

const linter = new Linter(linterConfig);

Installation

npm i rollup-plugin-bpmnlint -D

Usage

import { rollup } from 'rollup';

import bpmnlint from 'rollup-plugin-bpmnlint';

import nodeResolve from '@rollup/plugin-node-resolve';
import commonjs from '@rollup/plugin-commonjs';

rollup({
  input: 'main.js',
  plugins: [
    nodeResolve(),
    commonjs(),
    bpmnlint({
      // matching .bpmnlintrc files per default
      include: '**/.bpmnlintrc',

      // undefined per default
      exclude: [ ],

      // an compiler that transforms a .bpmnlintrc
      // file into the actual bpmnlint configuration
      compileConfig: null
    })
  ]
});

License

MIT

Keywords

FAQs

Last updated on 15 Feb 2023

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc