JSPM

@variant/contribute

1.0.5
    • ESM via JSPM
    • ES Module Entrypoint
    • Export Map
    • Keywords
    • License
    • Repository URL
    • TypeScript Types
    • README
    • Created
    • Published
    • Downloads 1
    • Score
      100M100P100Q34915F
    • License ISC

    Tool for seeing/syncing CONTRIBUTING.md guide for Variant repos

    Package Exports

    • @variant/contribute
    • @variant/contribute/index.mjs

    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 (@variant/contribute) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

    Readme

    Variant Contribute

    Verktøy for å synkronisere og se contribution guide for Variant sine repoer på Github.

    Bruk som CLI i et prosjekt

    For å lese contribute guide

    npx @variant/contribute

    For å opprette eller overskrive CONTRIBUTING.md i ditt prosjekt:

    npx @variant/contribute --save
    # Eller kortvariant
    npx @variant/contribute -s

    For å unngå spørsmål om overskriving:

    npx @variant/contribute --save --override
    # Eller kortvariant
    npx @variant/contribute -so

    API

    Installer:

    npm install @variant/contribute
    const contribute = require("@variant/contribute");
    
    // () => Promise<string>
    contribute.read();
    
    // (override = false : Boolean) => Promise<Boolean>
    contribute.save(override);