File tree 4 files changed +40
-16
lines changed
4 files changed +40
-16
lines changed Original file line number Diff line number Diff line change @@ -10,24 +10,29 @@ function install(packages, currentState) {
10
10
}
11
11
12
12
const installer = currentState . get ( 'installer' ) ;
13
- const installGlobal = currentState . get ( 'global' ) ? '--global' : null ;
14
- const saveExact = currentState . get ( 'saveExact' ) ? '--save-exact' : null ;
13
+ const saveExact = currentState . get ( 'saveExact' )
14
+
15
+ const isYarn = installer === 'yarn' ;
16
+ const exact = saveExact ? ( isYarn ? '--exact' : '--save-exact' ) : null ;
15
17
const color = chalk . supportsColor ? '--color=always' : null ;
16
18
17
- const npmArgs = [ 'install' ]
18
- . concat ( installGlobal )
19
- . concat ( saveExact )
19
+ const install = [ isYarn ? 'add' : 'install' ] ;
20
+ if ( currentState . get ( 'global' ) ) {
21
+ isYarn ? install . unshift ( 'global' ) : install . push ( '--global' ) ;
22
+ }
23
+ const args = install
20
24
. concat ( packages )
25
+ . concat ( exact )
21
26
. concat ( color )
22
27
. filter ( Boolean ) ;
23
28
24
29
console . log ( '' ) ;
25
- console . log ( `$ ${ chalk . green ( installer ) } ${ chalk . green ( npmArgs . join ( ' ' ) ) } ` ) ;
30
+ console . log ( `$ ${ chalk . green ( installer ) } ${ chalk . green ( args . join ( ' ' ) ) } ` ) ;
26
31
const spinner = ora ( `Installing using ${ chalk . green ( installer ) } ...` ) ;
27
32
spinner . enabled = spinner . enabled && currentState . get ( 'spinner' ) ;
28
33
spinner . start ( ) ;
29
34
30
- return execa ( installer , npmArgs , { cwd : currentState . get ( 'cwd' ) } ) . then ( output => {
35
+ return execa ( installer , args , { cwd : currentState . get ( 'cwd' ) } ) . then ( output => {
31
36
spinner . stop ( ) ;
32
37
console . log ( output . stdout ) ;
33
38
console . log ( output . stderr ) ;
Original file line number Diff line number Diff line change @@ -145,13 +145,17 @@ function interactive(currentState) {
145
145
const updatedPackages = packagesToUpdate
146
146
. map ( pkg => pkg . moduleName + '@' + pkg . latest ) . join ( ', ' ) ;
147
147
148
+ const isYarn = currentState . get ( 'installer' ) === 'yarn' ;
149
+
148
150
if ( ! currentState . get ( 'global' ) ) {
149
151
if ( saveDependencies . length ) {
150
- saveDependencies . unshift ( '--save' ) ;
152
+ ! isYarn && saveDependencies . push ( '--save' ) ;
151
153
}
152
154
153
155
if ( saveDevDependencies . length ) {
154
- saveDevDependencies . unshift ( '--save-dev' ) ;
156
+ isYarn
157
+ ? saveDevDependencies . push ( '--dev' )
158
+ : saveDevDependencies . push ( '--save-dev' ) ;
155
159
}
156
160
}
157
161
Original file line number Diff line number Diff line change @@ -14,8 +14,22 @@ function render(pkg, currentState) {
14
14
const rows = [ ] ;
15
15
16
16
const indent = ' ' + emoji ( ' ' ) ;
17
- const flags = currentState . get ( 'global' ) ? '--global' : `--save${ pkg . devDependency ? '-dev' : '' } ` ;
18
- const upgradeCommand = `npm install ${ flags } ${ packageName } @${ pkg . latest } ` ;
17
+ const installer = currentState . get ( 'installer' ) ;
18
+ const isYarn = installer === 'yarn' ;
19
+
20
+ const args = [ isYarn ? 'add' : 'install' ] ;
21
+ if ( currentState . get ( 'global' ) ) {
22
+ isYarn ? args . unshift ( 'global' ) : args . push ( '--global' ) ;
23
+ }
24
+
25
+ const flags = [ ] ;
26
+ if ( isYarn ) {
27
+ pkg . devDependency && flags . push ( '--dev' ) ;
28
+ } else {
29
+ pkg . devDependency ? flags . push ( '--save-dev' ) : flags . push ( '--save' ) ;
30
+ }
31
+
32
+ const upgradeCommand = `${ installer } ${ args . join ( ' ' ) } ${ packageName } @${ pkg . latest } ${ flags . join ( ' ' ) } ` ;
19
33
const upgradeMessage = `${ chalk . green ( upgradeCommand ) } to go from ${ pkg . installed } to ${ pkg . latest } ` ;
20
34
// DYLAN: clean this up
21
35
const status = _ ( [
Original file line number Diff line number Diff line change 1
1
'use strict' ;
2
2
3
- const _ = require ( 'lodash' ) ;
4
- const inquirer = require ( 'inquirer' ) ;
5
3
const chalk = require ( 'chalk' ) ;
6
- const table = require ( 'text-table' ) ;
7
4
const installPackages = require ( './install-packages' ) ;
8
5
const emoji = require ( './emoji' ) ;
9
6
@@ -32,13 +29,17 @@ function updateAll(currentState) {
32
29
const updatedPackages = packagesToUpdate
33
30
. map ( pkg => pkg . moduleName + '@' + pkg . latest ) . join ( ', ' ) ;
34
31
32
+ const isYarn = currentState . get ( 'installer' ) === 'yarn' ;
33
+
35
34
if ( ! currentState . get ( 'global' ) ) {
36
35
if ( saveDependencies . length ) {
37
- saveDependencies . unshift ( '--save' ) ;
36
+ ! isYarn && saveDependencies . push ( '--save' ) ;
38
37
}
39
38
40
39
if ( saveDevDependencies . length ) {
41
- saveDevDependencies . unshift ( '--save-dev' ) ;
40
+ isYarn
41
+ ? saveDevDependencies . push ( '--dev' )
42
+ : saveDevDependencies . push ( '--save-dev' ) ;
42
43
}
43
44
}
44
45
You can’t perform that action at this time.
0 commit comments