mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-09-22 05:40:48 +02:00
Convert markdownlint library to an ECMAScript module, replace markdownlint-micromark with micromark, stop publishing (large) markdownlint-browser.js, see https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c for guidance.
This commit is contained in:
parent
191226f070
commit
1e71f6f44e
140 changed files with 1087 additions and 10428 deletions
|
@ -1,29 +0,0 @@
|
|||
// @ts-check
|
||||
|
||||
"use strict";
|
||||
|
||||
const fs = require("node:fs").promises;
|
||||
|
||||
const [ command, ...args ] = process.argv.slice(2);
|
||||
|
||||
// eslint-disable-next-line unicorn/prefer-top-level-await
|
||||
(async() => {
|
||||
if (command === "copy") {
|
||||
const [ src, dest ] = args;
|
||||
await fs.copyFile(src, dest);
|
||||
} else if (command === "delete") {
|
||||
const { globby } = await import("globby");
|
||||
await Promise.all(
|
||||
args.flatMap(
|
||||
(glob) => globby(glob)
|
||||
.then(
|
||||
(files) => files.map((file) => fs.unlink(file))
|
||||
)
|
||||
)
|
||||
);
|
||||
} else if (command === "remove") {
|
||||
await Promise.all(args.map((dir) => fs.rm(dir, { "recursive": true })));
|
||||
} else {
|
||||
throw new Error(`Unsupported command: ${command}`);
|
||||
}
|
||||
})();
|
24
scripts/index.mjs
Normal file
24
scripts/index.mjs
Normal file
|
@ -0,0 +1,24 @@
|
|||
// @ts-check
|
||||
|
||||
import fs from "node:fs/promises";
|
||||
import { globby } from "globby";
|
||||
|
||||
const [ command, ...args ] = process.argv.slice(2);
|
||||
|
||||
if (command === "copy") {
|
||||
const [ src, dest ] = args;
|
||||
await fs.copyFile(src, dest);
|
||||
} else if (command === "delete") {
|
||||
await Promise.all(
|
||||
args.flatMap(
|
||||
(glob) => globby(glob)
|
||||
.then(
|
||||
(files) => files.map((file) => fs.unlink(file))
|
||||
)
|
||||
)
|
||||
);
|
||||
} else if (command === "remove") {
|
||||
await Promise.all(args.map((dir) => fs.rm(dir, { "recursive": true })));
|
||||
} else {
|
||||
throw new Error(`Unsupported command: ${command}`);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue