valdres 0.2.0-alpha.49 → 0.2.0-alpha.50

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.js +2 -2
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -238,7 +238,7 @@ class SuspendAndWaitForResolveError extends Error {
238
238
  }
239
239
  var generateSelectorTrace = (selectors) => {
240
240
  const lastIndex = selectors.length - 1;
241
- return selectors.map((selector, index) => {
241
+ return [...selectors].reverse().map((selector, index) => {
242
242
  const name = selector.name ?? "Anonymous Selector";
243
243
  if (index === 0) {
244
244
  return `[START] ${name}`;
@@ -769,7 +769,7 @@ var store = (id) => {
769
769
  return storeFromStoreData(data);
770
770
  };
771
771
  // package.json
772
- var version = "0.2.0-alpha.48";
772
+ var version = "0.2.0-alpha.49";
773
773
 
774
774
  // src/globalStore.ts
775
775
  if (globalThis.__valdres__) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "valdres",
3
- "version": "0.2.0-alpha.49",
3
+ "version": "0.2.0-alpha.50",
4
4
  "license": "MIT",
5
5
  "author": {
6
6
  "name": "Eigil Sagafos"
@@ -36,5 +36,5 @@
36
36
  "access": "public",
37
37
  "registry": "https://registry.npmjs.org/"
38
38
  },
39
- "gitHead": "1aa6c47faaaf0158c7ff7ed18e3b20648c183e24"
39
+ "gitHead": "96679f8323933d0a76ae5a9b84bbb8beb864a8fe"
40
40
  }