()
| 22 | const DEFAULT_REGISTRY = "https://registry.npmjs.org"; |
| 23 | |
| 24 | function touchTimestamp() { |
| 25 | fs.mkdirSync(stateDir, { recursive: true }); |
| 26 | const now = new Date(); |
| 27 | try { |
| 28 | fs.utimesSync(tsFile, now, now); |
| 29 | } catch (_) { |
| 30 | fs.writeFileSync(tsFile, now.toISOString()); |
| 31 | } |
| 32 | } |
| 33 | |
| 34 | function acquireLock() { |
| 35 | fs.mkdirSync(stateDir, { recursive: true }); |