[READ-ONLY] a fast, modern browser for the npm registry

chore: explicitly import node process (#1081)

authored by

abeer0 and committed by
GitHub
ad565288 1ba5200d

+4
+1
modules/lunaria.ts
··· 1 + import process from 'node:process' 1 2 import { defineNuxtModule, useNuxt } from 'nuxt/kit' 2 3 import { execSync } from 'node:child_process' 3 4 import { join } from 'node:path'
+1
modules/oauth.ts
··· 1 1 import { defineNuxtModule, useNuxt, addServerTemplate } from 'nuxt/kit' 2 + import process from 'node:process' 2 3 import { join } from 'node:path' 3 4 import { appendFileSync, existsSync, readFileSync } from 'node:fs' 4 5 import { randomUUID } from 'node:crypto'
+1
modules/runtime/server/cache.ts
··· 1 + import process from 'node:process' 1 2 import type { CachedFetchResult } from '#shared/utils/fetch-cache-config' 2 3 import { createFetch } from 'ofetch' 3 4
+1
modules/standard-site-sync.ts
··· 1 + import process from 'node:process' 1 2 import { readFileSync } from 'node:fs' 2 3 import { createHash } from 'node:crypto' 3 4 import { defineNuxtModule, useNuxt, createResolver } from 'nuxt/kit'