Commit b8542fe

Anton Golub <antongolub@antongolub.com>
2022-04-21 19:52:07
feat: bring nodejs v18 support, up deps (#393)
1 parent 4de0a0e
Changed files (3)
.github/workflows/test.yml
@@ -13,7 +13,7 @@ jobs:
 
     strategy:
       matrix:
-        node-version: [16.x, 17.x]
+        node-version: [16.x, 18.x]
 
     steps:
     - uses: actions/checkout@v3
src/index.mjs
@@ -14,11 +14,11 @@
 
 import fs from 'fs-extra'
 import * as globbyModule from 'globby'
-import os from 'os'
-import path from 'path'
-import {promisify, inspect} from 'util'
-import {spawn} from 'child_process'
-import {createInterface} from 'readline'
+import os from 'node:os'
+import path from 'node:path'
+import {promisify, inspect} from 'node:util'
+import {spawn} from 'node:child_process'
+import {createInterface} from 'node:readline'
 import {default as nodeFetch} from 'node-fetch'
 import which from 'which'
 import chalk from 'chalk'
package.json
@@ -37,16 +37,16 @@
     "@types/node": "^17.0",
     "@types/which": "^2.0.1",
     "chalk": "^5.0.1",
-    "fs-extra": "^10.0.1",
+    "fs-extra": "^10.1.0",
     "globby": "^13.1.1",
     "minimist": "^1.2.6",
     "node-fetch": "^3.2.3",
     "ps-tree": "^1.2.0",
     "which": "^2.0.2",
-    "yaml": "^2.0.0"
+    "yaml": "^2.0.1"
   },
   "devDependencies": {
-    "c8": "^7.11.0"
+    "c8": "^7.11.2"
   },
   "publishConfig": {
     "registry": "https://wombat-dressing-room.appspot.com"