@mxpicture/build-api 0.2.11 → 0.2.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -10,10 +10,8 @@ export class Changeset {
10
10
  this.paths = paths;
11
11
  }
12
12
  async run() {
13
- const [range, packages] = await Promise.all([
14
- this.range4Compare(),
15
- this.readPackages(),
16
- ]);
13
+ const range = await this.range4Compare();
14
+ const packages = await this.readPackages();
17
15
  const changed = await this.findChangedPackages(range, packages);
18
16
  // 4) If nothing changed, exit quietly
19
17
  if (changed.length === 0) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mxpicture/build-api",
3
- "version": "0.2.11",
3
+ "version": "0.2.12",
4
4
  "description": "Build utilities API",
5
5
  "type": "module",
6
6
  "author": "MXPicture",