Skip to content

Commit

Permalink
vx: comment out 'build' in release step
Browse files Browse the repository at this point in the history
  • Loading branch information
ealush committed Dec 22, 2021
1 parent 37dfaaf commit 6a2b45d
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions vx/scripts/release/releasePackage.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const build = require('./../build/buildPackage');
// const build = require('./../build/buildPackage');
const genDiffData = require('./genDiffData');
const getDiff = require('./github/getDiff');
const publishPackage = require('./steps/publishPackage');
Expand Down Expand Up @@ -30,7 +30,11 @@ function releasePackage() {

updateLocalDepsToLatest();

build();
// At the moment we're building all packages in the integration.yml workflow.
// This is because we don't install all packages, but some are linked so we don't
// have their dist and type files. A possible solution might be to add the types
// to the repo as well. Need to revisit this.
// build();

updateChangelog(diffData);

Expand Down

0 comments on commit 6a2b45d

Please sign in to comment.