Skip to content

Commit d236b3f

Browse files
committed
meta: Update pack script
1 parent e9bcfb6 commit d236b3f

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

scripts/pack-and-upload.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ yarn build
77

88
# Temp workaround
99
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
1414
############################################
1515

1616
# Upload NPM packages

scripts/package-and-upload-to-zeus.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@ const join = require('path').join;
1818
return /^\//.test(line);
1919
});
2020

21+
console.log('---------------------');
22+
console.log('Changed Packages:');
23+
console.log(changedPackagesFolders);
24+
console.log('---------------------');
25+
2126
await Promise.all(
2227
changedPackagesFolders.map(async folder => {
2328
const archive = (await exec(`cd ${folder}; npm pack`)).stdout.trim();

0 commit comments

Comments
 (0)