File tree 2 files changed +20
-4
lines changed
2 files changed +20
-4
lines changed Original file line number Diff line number Diff line change @@ -3,12 +3,14 @@ npm-edit(1) -- Edit an installed package
3
3
4
4
## SYNOPSIS
5
5
6
- npm edit <pkg>[@<version> ]
6
+ npm edit <pkg>[/<subpkg>... ]
7
7
8
8
## DESCRIPTION
9
9
10
- Opens the package folder in the default editor (or whatever you've
11
- configured as the npm ` editor ` config -- see ` npm-config(7) ` .)
10
+ Selects a (sub)dependency in the current
11
+ working directory and opens the package folder in the default editor
12
+ (or whatever you've configured as the npm ` editor ` config -- see
13
+ ` npm-config(7) ` .)
12
14
13
15
After it has been edited, the package is rebuilt so as to pick up any
14
16
changes in compiled packages.
Original file line number Diff line number Diff line change 2
2
// open the package folder in the $EDITOR
3
3
4
4
module . exports = edit
5
- edit . usage = 'npm edit <pkg>[@<version> ]'
5
+ edit . usage = 'npm edit <pkg>[/<subpkg>... ]'
6
6
7
7
edit . completion = require ( './utils/completion/installed-shallow.js' )
8
8
@@ -22,6 +22,20 @@ function edit (args, cb) {
22
22
) )
23
23
}
24
24
p = p . split ( '/' )
25
+ // combine scoped parts
26
+ . reduce ( function ( parts , part ) {
27
+ if ( parts . length === 0 ) {
28
+ return [ part ]
29
+ }
30
+ var lastPart = parts [ parts . length - 1 ]
31
+ // check if previous part is the first part of a scoped package
32
+ if ( lastPart [ 0 ] === '@' && ! lastPart . includes ( '/' ) ) {
33
+ parts [ parts . length - 1 ] += '/' + part
34
+ } else {
35
+ parts . push ( part )
36
+ }
37
+ return parts
38
+ } , [ ] )
25
39
. join ( '/node_modules/' )
26
40
. replace ( / ( \/ n o d e _ m o d u l e s ) + / , '/node_modules' )
27
41
var f = path . resolve ( npm . dir , p )
You can’t perform that action at this time.
0 commit comments