Skip to content

Commit 5f34a17

Browse files
Switched to scoped @jsdevtools packages
1 parent 945c753 commit 5f34a17

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
"@types/node": "^13.1.1",
5858
"@types/semver": "^7.1.0",
5959
"chai": "^4.2.0",
60-
"chai-exec": "^1.1.2",
60+
"@jsdevtools/chai-exec": "^1.1.2",
6161
"del": "^5.1.0",
6262
"eslint": "^6.8.0",
6363
"mocha": "^7.0.1",
@@ -73,7 +73,7 @@
7373
"command-line-args": "^5.1.1",
7474
"detect-indent": "^6.0.0",
7575
"detect-newline": "^3.1.0",
76-
"ez-spawn": "^2.1.6",
76+
"@jsdevtools/ez-spawn": "^2.1.6",
7777
"globby": "^11.0.0",
7878
"inquirer": "^7.0.1",
7979
"log-symbols": "^3.0.0",

src/git.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import * as ezSpawn from "ez-spawn";
1+
import * as ezSpawn from "@jsdevtools/ez-spawn";
22
import { Operation } from "./operation";
33
import { ProgressEvent } from "./types/version-bump-progress";
44

src/run-npm-script.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import * as ezSpawn from "ez-spawn";
1+
import * as ezSpawn from "@jsdevtools/ez-spawn";
22
import { readJsonFile } from "./fs";
33
import { isManifest, Manifest } from "./manifest";
44
import { Operation } from "./operation";

test/utils/bump.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"use strict";
22

33
const chai = require("chai");
4-
const chaiExec = require("chai-exec");
4+
const chaiExec = require("@jsdevtools/chai-exec");
55

66
chai.use(chaiExec);
77

0 commit comments

Comments
 (0)