@terraforge/core 0.0.12 → 0.0.13

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.
Files changed (2) hide show
  1. package/dist/index.mjs +1 -1
  2. package/package.json +1 -1
package/dist/index.mjs CHANGED
@@ -227,7 +227,7 @@ const output = (value) => {
227
227
  };
228
228
  const combine = (...inputs) => {
229
229
  return new Output(new Set(findInputDeps(inputs)), (resolve$1, reject) => {
230
- Promise.all(inputs).then((result) => {
230
+ Promise.all(inputs).then(resolveInputs).then((result) => {
231
231
  resolve$1(result);
232
232
  }, reject);
233
233
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@terraforge/core",
3
- "version": "0.0.12",
3
+ "version": "0.0.13",
4
4
  "type": "module",
5
5
  "repository": {
6
6
  "type": "git",