项目作者: Simonwep

项目描述 :
Webpack loader for bavary declarations
高级语言: JavaScript
项目地址: git://github.com/Simonwep/bavary-webpack-loader.git
创建时间: 2019-12-15T14:20:46Z
项目社区:https://github.com/Simonwep/bavary-webpack-loader

开源协议:MIT License

下载



Logo



Coverage Status
Build Status
Download count
Current version
Support me

Checkout related packages

Install via npm:

  1. $ npm install -g @bavary/webpack-loader

Install via yarn:

  1. $ yarn global add @bavary/webpack-loader

Usage

Create a new rule with @bavary/webpack-loader as loader:

  1. module.exports = {
  2. // ...
  3. module: {
  4. rules: [
  5. {
  6. test: /\.bv$/,
  7. use: '@bavary/webpack-loader'
  8. }
  9. ]
  10. }
  11. // ...
  12. };

Be sure to install the peer-dependency @bavary/core and optionally
@bavary/bavary-lib if you want make use of the functions option.

Available options

  1. const options = {
  2. // Module type
  3. esModule: false,
  4. // Inject functions from @bavary/lib. Be sure to install @bavary/lib to use them
  5. functions: ['count', ...],
  6. ...bavaryOptions
  7. }

where bavaryOptions are all options which can be used in the compiler configuration.

Example

./index.bv

  1. entry ['A' | 'B']

./app.js

  1. import parse from './index.bv';
  2. console.log(parse('A')); // Logs "A"