Skip to content
This repository was archived by the owner on Aug 22, 2023. It is now read-only.

Commit d3136fd

Browse files
committed
fix: move @heroku/linewrap to @oclif/linewrap
1 parent bd97b3c commit d3136fd

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"author": "Jeff Dickey @jdxcode",
66
"bugs": "https://github.com/oclif/parser/issues",
77
"dependencies": {
8-
"@heroku/linewrap": "^1.0.0",
8+
"@oclif/linewrap": "^1.0.0",
99
"chalk": "^2.3.2"
1010
},
1111
"devDependencies": {

src/list.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import {stdtermwidth} from './screen'
22
import {maxBy} from './util'
33

44
function linewrap(length: number, s: string): string {
5-
const lw = require('@heroku/linewrap')
5+
const lw = require('@oclif/linewrap')
66
return lw(length, stdtermwidth, {
77
skipScheme: 'ansi-color',
88
})(s).trim()

yarn.lock

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,6 @@
22
# yarn lockfile v1
33

44

5-
"@heroku/linewrap@^1.0.0":
6-
version "1.0.0"
7-
resolved "https://registry.yarnpkg.com/@heroku/linewrap/-/linewrap-1.0.0.tgz#a9d4e99f0a3e423a899b775f5f3d6747a1ff15c6"
8-
95
"@oclif/errors@^1.0.4":
106
version "1.0.4"
117
resolved "https://registry.yarnpkg.com/@oclif/errors/-/errors-1.0.4.tgz#8e34386ede530484ae3c98bc21d818c416214c66"
@@ -16,6 +12,10 @@
1612
strip-ansi "^4.0.0"
1713
wrap-ansi "^3.0.1"
1814

15+
"@oclif/linewrap@^1.0.0":
16+
version "1.0.0"
17+
resolved "https://registry.yarnpkg.com/@oclif/linewrap/-/linewrap-1.0.0.tgz#aedcb64b479d4db7be24196384897b5000901d91"
18+
1919
"@oclif/tslint@^1.1.0":
2020
version "1.1.0"
2121
resolved "https://registry.yarnpkg.com/@oclif/tslint/-/tslint-1.1.0.tgz#a2d494a61afa882a685fe5f4d866dafd18990728"

0 commit comments

Comments
 (0)