first commit

This commit is contained in:
2025-03-07 22:27:18 +08:00
commit 912da26042
4457 changed files with 306818 additions and 0 deletions

13
node_modules/stylelint/lib/utils/dynamicImport.mjs generated vendored Normal file
View File

@@ -0,0 +1,13 @@
import { isAbsolute } from 'node:path';
import { pathToFileURL } from 'node:url';
/**
* Dynamic import wrapper for compatibility with absolute paths on Windows
*
* @see https://github.com/stylelint/stylelint/issues/7382
*
* @param {string} path
*/
export default function dynamicImport(path) {
return import(isAbsolute(path) ? pathToFileURL(path).toString() : path);
}