Skip to content

Commit

Permalink
fix: bump oclif/core
Browse files Browse the repository at this point in the history
  • Loading branch information
mdonnalley committed Sep 22, 2023
1 parent 76d5f21 commit 8d340ce
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"node": ">=16.0.0"
},
"dependencies": {
"@oclif/core": "3.0.0-beta.13",
"@oclif/core": "3.0.0-beta.16",
"@salesforce/core": "^5.2.6",
"@salesforce/kit": "^3.0.11",
"@salesforce/ts-types": "^2.0.7",
Expand Down
4 changes: 2 additions & 2 deletions test/unit/ux/spinner.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ describe('Spinner', () => {
const spinner = new Spinner(true);
spinner.start('Doing things');
spinner.stop('Finished');
expect(writeStub.firstCall.args).to.deep.equal(['stderr', 'Doing things...\n']);
expect(writeStub.firstCall.args).to.deep.equal(['stderr', 'Doing things...']);
});

it('should not log anything if output is not enabled', () => {
Expand All @@ -45,7 +45,7 @@ describe('Spinner', () => {
spinner.start('Doing things');
spinner.pause(() => {});
spinner.stop('Finished');
expect(writeStub.firstCall.args).to.deep.equal(['stderr', 'Doing things...\n']);
expect(writeStub.firstCall.args).to.deep.equal(['stderr', 'Doing things...']);
});

it('should not log anything if output is not enabled', () => {
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -532,10 +532,10 @@
"@nodelib/fs.scandir" "2.1.5"
fastq "^1.6.0"

"@oclif/[email protected].13":
version "3.0.0-beta.13"
resolved "https://registry.yarnpkg.com/@oclif/core/-/core-3.0.0-beta.13.tgz#aee260111378560cb6f4e7c0893fd8e6c69bb145"
integrity sha512-c1uBS1EhKEc0Px1Dbf3dXmw2Jlvlyz4n0WQT7o2VnElNnJaqPfDvlKnOpb4waUNlKfBr0x5POnMpe3TWoC73mA==
"@oclif/[email protected].16":
version "3.0.0-beta.16"
resolved "https://registry.yarnpkg.com/@oclif/core/-/core-3.0.0-beta.16.tgz#da231238d34b1971c455e9e990b2b48680fa2510"
integrity sha512-z/GUi+qJ0CRflIRiKLlnmNS/uaftgrFwXPmROHVHBCAoaxBNsudDbyGxCZlWn0n2n2cyjXX4zqdxX3OLb36TDw==
dependencies:
"@types/cli-progress" "^3.11.0"
ansi-escapes "^4.3.2"
Expand Down

0 comments on commit 8d340ce

Please sign in to comment.