Skip to content

Latest commit

 

History

History
36 lines (26 loc) · 700 Bytes

readme.md

File metadata and controls

36 lines (26 loc) · 700 Bytes

@farmfe/plugin-yaml

Inspired By @rollup/plugin-yaml

🍣 A Farm plugin which Converts YAML files to ES6 modules.

install

pnpm add -D @farmfe/plugin-yaml

Usage

farm.config.ts

import { defineConfig } from '@farmfe/core';

export default defineConfig({
  plugins: [
    [
      '@farmfe/plugin-yaml',
      {
        documentMode: 'single' | 'multi', // default single
        include: Regex, // default None,
        exclude: Regex, // default None
      },
    ],
  ],
});

notice:

include or exclude is Regex not glob For example **/01.yaml is not illegal。What is right is like ".*\\/01.yaml"