-
-
Notifications
You must be signed in to change notification settings - Fork 9
Labels
good first issueGood for newcomersGood for newcomershelp wantedExtra attention is neededExtra attention is neededlet's do it
Description
Description
Since os.tmpDir()
is deprecated in Node.js v14.0.0, we should provide a codemod to replace it.
- The codemod should modify any call expression of this api.
Examples
Before:
import os from 'nodes:os';
const foo = os.tmpDir()
After:
import os from 'nodes:os';
const foo = os.tmpdir()
REFS
Metadata
Metadata
Assignees
Labels
good first issueGood for newcomersGood for newcomershelp wantedExtra attention is neededExtra attention is neededlet's do it
Type
Projects
Status
🏗 In progress