1.0.0 • Published 2 months ago

@momsfriendlydevco/lawyers.txt v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 months ago

@MomsFriendlyDevCo/Lawyers.txt

Simple Supabase like lawyers.txt generation for easy inclusion within projects.

This project exports a single string which can be glued into static files when generated.

It can also be run as lawyers from any project its installed in:

import {dirName} from '@momsfriendlydevco/es6'; // Or work out where we are somehow
import lawyers from '@momsfriendlydevco/lawyers.txt';

let lawyersSpeil = await lawyers({
    path: dirName(),
});

// ...Do something with the string

Auto generation within a Vite project

The following is an example of how to generate + output a lawyers.txt file using vite-plugin-inject NPM:

// Within vite.config.js
import {dirName} from '@momsfriendlydevco/es6';
import pluginInject from 'vite-plugin-inject';
import lawyers from '@momsfriendlydevco/lawyers.txt';

export default {
    plugins: [
        pluginInject([
            /* ... other plugin config ... */
            {
                name: 'lawyers.txt',
                async content() {
                    return await lawyer({
                        path: dirName(),
                    });
                },
            },
        ])
    ],
}

Example Output

Lawyers.txt
-----------
For compliance.

If you're a creator/contributor to one of these packages, thanks!

Last Updated: 2024-03-14

# Package Name License Version                 Repository
- ------------ ------- ----------------------- ----------------------------------------
1 list-it      MIT     1.3.12                  https://github.com/takamin/list-it
2 nlf          MIT     2.1.1                   http://github.com/iandotkelly/nlf
3 node-getopt  MIT     0.3.3-forked-by-takamin https://github.com/jiangmiao/node-getopt

API

lawyers(options)

This project exports a single function which takes the root path to scan from and some additional options. It returns a promise which resolves to a String when generation has completed.

Supported options are:

OptionTypeDefaultDescription
pathStringprocess.cwd()The path to start scanning from
excludeArray |[]` | Array of packages to exclude, by name
excludeSelftruetrueExclude the named package in the starting path
depthNumber1Package depth to scan
productionBooleantrueOnly show production level packages
1.0.0

2 months ago