Skip to content

Commit

Permalink
Update dependencies (mostly major updates)
Browse files Browse the repository at this point in the history
  • Loading branch information
webpro committed Dec 1, 2021
1 parent f3fd638 commit fbe0575
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion lib/plugin/git/Git.js
@@ -1,6 +1,6 @@
import { EOL } from 'os';
import _ from 'lodash';
import execa from 'execa';
import { execa } from 'execa';
import { format, e } from '../../util.js';
import GitBase from '../GitBase.js';
import prompts from './prompts.js';
Expand Down
2 changes: 1 addition & 1 deletion lib/plugin/github/GitHub.js
@@ -1,7 +1,7 @@
import fs from 'fs';
import path from 'path';
import { Octokit } from '@octokit/rest';
import globby from 'globby';
import { globby } from 'globby';
import mime from 'mime-types';
import _ from 'lodash';
import retry from 'async-retry';
Expand Down
2 changes: 1 addition & 1 deletion lib/plugin/gitlab/GitLab.js
@@ -1,7 +1,7 @@
import fs from 'fs';
import path from 'path';
import got from 'got';
import globby from 'globby';
import { globby } from 'globby';
import FormData from 'form-data';
import _ from 'lodash';
import Release from '../GitRelease.js';
Expand Down
2 changes: 1 addition & 1 deletion lib/shell.js
@@ -1,5 +1,5 @@
import sh from 'shelljs';
import execa from 'execa';
import { execa } from 'execa';
import _debug from 'debug';
import { format } from './util.js';

Expand Down
24 changes: 12 additions & 12 deletions package.json
Expand Up @@ -64,37 +64,37 @@
"@iarna/toml": "2.2.5",
"@octokit/rest": "18.12.0",
"async-retry": "1.3.3",
"chalk": "4.1.2",
"chalk": "5.0.0",
"cosmiconfig": "7.0.1",
"debug": "4.3.2",
"debug": "4.3.3",
"deprecated-obj": "2.0.0",
"execa": "5.1.1",
"execa": "6.0.0",
"form-data": "4.0.0",
"git-url-parse": "11.6.0",
"globby": "11.0.4",
"globby": "12.0.2",
"got": "11.8.3",
"inquirer": "8.2.0",
"is-ci": "3.0.1",
"lodash": "4.17.21",
"mime-types": "2.1.34",
"new-github-release-url": "1.0.0",
"open": "7.4.2",
"ora": "5.4.1",
"os-name": "4.0.1",
"new-github-release-url": "2.0.0",
"open": "8.4.0",
"ora": "6.0.1",
"os-name": "5.0.1",
"parse-json": "5.2.0",
"semver": "7.3.5",
"shelljs": "0.8.4",
"update-notifier": "5.1.0",
"url-join": "4.0.1",
"uuid": "8.3.2",
"yaml": "1.10.2",
"yargs-parser": "20.2.9"
"yargs-parser": "21.0.0"
},
"devDependencies": {
"@octokit/request-error": "2.1.0",
"ava": "3.15.0",
"codecov": "3.8.3",
"eslint": "8.2.0",
"eslint": "8.3.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-ava": "13.1.0",
"eslint-plugin-import": "2.25.3",
Expand All @@ -104,9 +104,9 @@
"mock-stdio": "1.0.3",
"nock": "13.2.1",
"nyc": "15.1.0",
"prettier": "2.4.1",
"prettier": "2.5.0",
"sinon": "12.0.1",
"strip-ansi": "6.0.0"
"strip-ansi": "7.0.1"
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
Expand Down
4 changes: 2 additions & 2 deletions test/config.js
@@ -1,5 +1,6 @@
import test from 'ava';
import mock from 'mock-fs';
import isCI from 'is-ci';
import Config from '../lib/config.js';
import { readJSON } from '../lib/util.js';

Expand Down Expand Up @@ -44,8 +45,7 @@ test('should set CI mode', t => {
t.is(config.isCI, true);
});

test('should detect CI mode', async t => {
const { default: isCI } = await import('is-ci');
test('should detect CI mode', t => {
const config = new Config();
t.is(config.options.ci, isCI);
t.is(config.isCI, isCI);
Expand Down

0 comments on commit fbe0575

Please sign in to comment.