Socket
Socket
Sign inDemoInstall

yml-loader

Package Overview
Dependencies
9
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    yml-loader

YAML loader for webpack


Version published
Weekly downloads
53K
decreased by-30.39%
Maintainers
1
Install size
0.990 MB
Created
Weekly downloads
 

Readme

Source

YAML Loader

YAML loader for webpack.

Installation

npm install --save-dev yml-loader

Usage

// webpack.config.js

module.exports = {
  module: {
    loaders: [
      {
        test: /\.yml$/,
        loader: 'yml'
      }
    ]
  }
};

Multiple document loading

By adding a multiDocument option will make this possible.

%YAML 1.2
---
doc: 1
---
doc: 2
...

Blacklisting keys

When passed a keysToRemove query (Array of Strings) to remove keys from the loader output.

Given input file:

development:
  public_key: "this is needed on the client"
  private_key: "should be restricted to server"
prod:
  public_key: "also needed on the client"
  private_key: "missile launch codes ¯\_(ツ)_/¯"

And this loader config:

// webpack.config.js under module.exports.module:
loaders: [
  {
    test: /\.ya?ml$/,
    loader: 'yml',
    query: {
      // debug: true, // enable to display removed keys
      keysToRemove: ['private_key', ],
    },
  },
],

Will output:

{
  development: { public_key: 'this is needed on the client' },
  prod: { public_key: 'also needed on the client' }
}

License

MIT

Keywords

FAQs

Last updated on 11 Jul 2017

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