Skip to content

Commit

Permalink
build(deps-dev): update dependency eslint-plugin-unicorn to v57 (#756)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Felipe Santos <[email protected]>
  • Loading branch information
renovate[bot] and felipecrs authored Feb 17, 2025
1 parent b2dfbc8 commit 616b9e7
Show file tree
Hide file tree
Showing 9 changed files with 58 additions and 237 deletions.
2 changes: 1 addition & 1 deletion lib/prepare.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { execa } from 'execa';
import { readJson } from 'fs-extra/esm';
import path from 'node:path';
import process from 'node:process';
import { isOvsxPublishEnabled, isTargetEnabled } from './utils.js';
import { isOvsxPublishEnabled, isTargetEnabled } from './utilities.js';

export async function prepare(version, packageVsix, logger, cwd) {
if (packageVsix === false) {
Expand Down
2 changes: 1 addition & 1 deletion lib/publish.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {
isOvsxPublishEnabled,
isTargetEnabled,
isVscePublishEnabled,
} from './utils.js';
} from './utilities.js';

export async function publish(version, packagePath, logger, cwd) {
const { publisher, name } = await readJson(path.join(cwd, './package.json'));
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion lib/verify-target.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import SemanticReleaseError from '@semantic-release/error';
import process from 'node:process';
import { isTargetEnabled } from './utils.js';
import { isTargetEnabled } from './utilities.js';

export async function verifyTarget() {
if (!isTargetEnabled()) {
Expand Down
2 changes: 1 addition & 1 deletion lib/verify-vsce-auth.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import SemanticReleaseError from '@semantic-release/error';
import { execa } from 'execa';
import process from 'node:process';
import { isAzureCredentialEnabled } from './utils.js';
import { isAzureCredentialEnabled } from './utilities.js';

export async function verifyVsceAuth(logger, cwd) {
const pat = 'VSCE_PAT' in process.env && process.env.VSCE_PAT;
Expand Down
2 changes: 1 addition & 1 deletion lib/verify.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// @ts-check

import SemanticReleaseError from '@semantic-release/error';
import { isOvsxPublishEnabled, isVscePublishEnabled } from './utils.js';
import { isOvsxPublishEnabled, isVscePublishEnabled } from './utilities.js';
import { verifyOvsxAuth } from './verify-ovsx-auth.js';
import { verifyPackage } from './verify-package.js';
import { verifyTarget } from './verify-target.js';
Expand Down
Loading

0 comments on commit 616b9e7

Please sign in to comment.