Skip to content

Commit f1992a5

Browse files
travigr2m
authored andcommittedJan 13, 2023
fix(tempy): upgraded to the latest version of tempy
1 parent 2d8ff15 commit f1992a5

8 files changed

+184
-142
lines changed
 

‎index.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { castArray, defaultTo } from 'lodash-es';
22
import AggregateError from 'aggregate-error';
3-
import tempy from 'tempy';
3+
import {temporaryFile} from 'tempy';
44
import setLegacyToken from './lib/set-legacy-token.js';
55
import getPkg from './lib/get-pkg.js';
66
import verifyNpmConfig from './lib/verify-config.js';
@@ -11,7 +11,7 @@ import publishNpm from './lib/publish.js';
1111

1212
let verified;
1313
let prepared;
14-
const npmrc = tempy.file({name: '.npmrc'});
14+
const npmrc = temporaryFile({name: '.npmrc'});
1515

1616
export async function verifyConditions(pluginConfig, context) {
1717
// If the npm publish plugin is used and has `npmPublish`, `tarballDir` or `pkgRoot` configured, validate them now in order to prevent any release if the configuration is wrong

0 commit comments

Comments
 (0)
Please sign in to comment.