Skip to content

Commit ad56528

Browse files
authored
chore: explicitly import node process (#1081)
1 parent 1ba5200 commit ad56528

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

modules/lunaria.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import process from 'node:process'
12
import { defineNuxtModule, useNuxt } from 'nuxt/kit'
23
import { execSync } from 'node:child_process'
34
import { join } from 'node:path'

modules/oauth.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import { defineNuxtModule, useNuxt, addServerTemplate } from 'nuxt/kit'
2+
import process from 'node:process'
23
import { join } from 'node:path'
34
import { appendFileSync, existsSync, readFileSync } from 'node:fs'
45
import { randomUUID } from 'node:crypto'

modules/runtime/server/cache.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import process from 'node:process'
12
import type { CachedFetchResult } from '#shared/utils/fetch-cache-config'
23
import { createFetch } from 'ofetch'
34

modules/standard-site-sync.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import process from 'node:process'
12
import { readFileSync } from 'node:fs'
23
import { createHash } from 'node:crypto'
34
import { defineNuxtModule, useNuxt, createResolver } from 'nuxt/kit'

0 commit comments

Comments
 (0)