JSPM

@deepcode/dcignore

1.0.4
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 8254
  • Score
    100M100P100Q148288F
  • License MIT

Default implementation of .dcignore file

Package Exports

  • @deepcode/dcignore

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@deepcode/dcignore) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

dcignore

This repository offers a default implementation of the .dcignore file and an automatic generator based on common .gitignore patterns found in https://github.com/github/gitignore

CLI usage

  1. Clone this repository
  2. Copy the full.dcignore file into the root of your project and rename it .dcignore

Module usage

  1. npm install @deepcode/dcignore
  2. Import the module.
  3. Use the DefaultDCIgnore string to fill a standard .dcignore file.
  4. Use the CustomDCIgnore string if you need to initialize an empty .dcignore with some content.

Javascript

const { DefaultDCIgnore, CustomDCIgnore } = require('@deepcode/dcignore');

Typescript

import { DefaultDCIgnore, CustomDCIgnore } from "@deepcode/dcignore";