@reactive-vscode/reactivity 0.2.3 → 0.2.5

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 -4
  2. package/package.json +6 -6
package/dist/index.js CHANGED
@@ -1395,10 +1395,8 @@ const getId = (job) => job.id == null ? Infinity : job.id;
1395
1395
  const comparator = (a, b) => {
1396
1396
  const diff = getId(a) - getId(b);
1397
1397
  if (diff === 0) {
1398
- if (a.pre && !b.pre)
1399
- return -1;
1400
- if (b.pre && !a.pre)
1401
- return 1;
1398
+ if (a.pre && !b.pre) return -1;
1399
+ if (b.pre && !a.pre) return 1;
1402
1400
  }
1403
1401
  return diff;
1404
1402
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@reactive-vscode/reactivity",
3
3
  "type": "module",
4
- "version": "0.2.3",
4
+ "version": "0.2.5",
5
5
  "description": "Full Vue Reactivity API without DOM",
6
6
  "author": "_Kerman <kermanx@qq.com>",
7
7
  "license": "MIT",
@@ -29,11 +29,11 @@
29
29
  "dist"
30
30
  ],
31
31
  "devDependencies": {
32
- "@vue/reactivity": "^3.4.27",
33
- "@vue/shared": "^3.4.27",
34
- "typescript": "^5.4.5",
35
- "vite": "^5.2.12",
36
- "vite-plugin-dts": "^3.9.1"
32
+ "@vue/reactivity": "3.4.27",
33
+ "@vue/shared": "3.4.27",
34
+ "typescript": "^5.6.2",
35
+ "vite": "^5.4.8",
36
+ "vite-plugin-dts": "^4.2.1"
37
37
  },
38
38
  "scripts": {
39
39
  "typecheck": "tsc --noEmit",