Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@textlint/config-inliner

Package Overview
Dependencies
Maintainers
3
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@textlint/config-inliner

Inlining config for supporting browser.

  • 0.17.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
92
decreased by-73.49%
Maintainers
3
Weekly downloads
 
Created
Source

@textlint/config-inliner

Inlining config for supporting browser.

Some rules use fs, so fs module does not work in a browser. Instead of using fs, inlining the content before compiling by @textlint/script-compiler.

textlint-scripts build inlining fs usage by default.

@textlint/config-inliner's target is .textlintrc configration file.

  • TODO: we need to defined common rule for inlining.

Supported Rules

Install

Install with npm:

npm install @textlint/config-inliner

Usage

import { loadConfig } from "@textlint/config-loader";
import { inlineConfig } from "@textlint/config-inliner";
const configResult = await loadConfig();
const inlinedConfig = await inlineConfig({
    cwd: process.cwd(),
    configFilePath: configResult.configFilePath,
    config: configResult.config
});

Changelog

See Releases page.

Running tests

Install devDependencies and Run npm test:

npm test

Contributing

Pull requests and stars are always welcome.

For bugs and feature requests, please create an issue.

  1. Fork it!
  2. Create your feature branch: git checkout -b my-new-feature
  3. Commit your changes: git commit -am 'Add some feature'
  4. Push to the branch: git push origin my-new-feature
  5. Submit a pull request :D

Author

License

MIT © azu

Keywords

FAQs

Package last updated on 03 Apr 2024

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc