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

Configure Feed

Select the types of activity you want to include in your feed.

chore: import node process explicitly (#11)

authored by

abeer0 and committed by
GitHub
8416aa89 60b107b0

+5 -1
+2 -1
.oxlintrc.json
··· 9 9 "rules": { 10 10 "no-console": "warn", 11 11 "no-await-in-loop": "off", 12 - "unicorn/no-array-sort": "off" 12 + "unicorn/no-array-sort": "off", 13 + "no-restricted-globals": "error" 13 14 }, 14 15 "ignorePatterns": [ 15 16 ".output/**",
+1
cli/src/cli.ts
··· 1 1 #!/usr/bin/env node 2 + import process from 'node:process' 2 3 import { spawn } from 'node:child_process' 3 4 import { defineCommand, runMain } from 'citty' 4 5 import { listen } from 'listhen'
+1
cli/src/npm-client.ts
··· 1 + import process from 'node:process' 1 2 import { exec } from 'node:child_process' 2 3 import { promisify } from 'node:util' 3 4 import { logCommand, logSuccess, logError } from './logger.ts'
+1
playwright.config.ts
··· 1 + import process from 'node:process' 1 2 import { fileURLToPath } from 'node:url' 2 3 import { defineConfig, devices } from '@playwright/test' 3 4 import type { ConfigOptions } from '@nuxt/test-utils/playwright'