File tree Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -7,10 +7,10 @@ yarn build
7
7
8
8
# Temp workaround
9
9
git clone https://github.com/HazAT/lerna.git
10
- cd lerna/core/lerna
11
- yarn link
12
- cd ../../../
13
- yarn link lerna
10
+ cd lerna
11
+ npm link
12
+ cd ../
13
+ npm link lerna
14
14
# ###########################################
15
15
16
16
# Upload NPM packages
Original file line number Diff line number Diff line change @@ -18,6 +18,11 @@ const join = require('path').join;
18
18
return / ^ \/ / . test ( line ) ;
19
19
} ) ;
20
20
21
+ console . log ( '---------------------' ) ;
22
+ console . log ( 'Changed Packages:' ) ;
23
+ console . log ( changedPackagesFolders ) ;
24
+ console . log ( '---------------------' ) ;
25
+
21
26
await Promise . all (
22
27
changedPackagesFolders . map ( async folder => {
23
28
const archive = ( await exec ( `cd ${ folder } ; npm pack` ) ) . stdout . trim ( ) ;
You can’t perform that action at this time.
0 commit comments