feat: init
This commit is contained in:
49
node_modules/@nuxt/cli/dist/kit-4LNqcmNp.mjs
generated
vendored
Normal file
49
node_modules/@nuxt/cli/dist/kit-4LNqcmNp.mjs
generated
vendored
Normal file
@@ -0,0 +1,49 @@
|
||||
import process from "node:process";
|
||||
import { relative } from "pathe";
|
||||
import { pathToFileURL } from "node:url";
|
||||
import { resolveModulePath } from "exsolve";
|
||||
|
||||
//#region ../nuxi/src/utils/paths.ts
|
||||
const cwd = process.cwd();
|
||||
function relativeToProcess(path) {
|
||||
return relative(cwd, path) || path;
|
||||
}
|
||||
function withNodePath(path) {
|
||||
return [path, process.env.NODE_PATH].filter((i) => !!i);
|
||||
}
|
||||
|
||||
//#endregion
|
||||
//#region ../nuxi/src/utils/kit.ts
|
||||
async function loadKit(rootDir) {
|
||||
try {
|
||||
let kit = await import(pathToFileURL(resolveModulePath("@nuxt/kit", { from: tryResolveNuxt(rootDir) || rootDir })).href);
|
||||
if (!kit.writeTypes) kit = {
|
||||
...kit,
|
||||
writeTypes: () => {
|
||||
throw new Error("`writeTypes` is not available in this version of `@nuxt/kit`. Please upgrade to v3.7 or newer.");
|
||||
}
|
||||
};
|
||||
return kit;
|
||||
} catch (e) {
|
||||
if (e.toString().includes("Cannot find module '@nuxt/kit'")) throw new Error("nuxi requires `@nuxt/kit` to be installed in your project. Try installing `nuxt` v3+ or `@nuxt/bridge` first.");
|
||||
throw e;
|
||||
}
|
||||
}
|
||||
function tryResolveNuxt(rootDir) {
|
||||
for (const pkg of [
|
||||
"nuxt-nightly",
|
||||
"nuxt",
|
||||
"nuxt3",
|
||||
"nuxt-edge"
|
||||
]) {
|
||||
const path = resolveModulePath(pkg, {
|
||||
from: withNodePath(rootDir),
|
||||
try: true
|
||||
});
|
||||
if (path) return path;
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
//#endregion
|
||||
export { withNodePath as i, tryResolveNuxt as n, relativeToProcess as r, loadKit as t };
|
||||
Reference in New Issue
Block a user