@planet-matrix/mobius-model 0.1.2 → 0.1.3

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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @planet-matrix/mobius-model
2
2
 
3
+ ## 0.1.3
4
+
5
+ ### Patch Changes
6
+
7
+ - f9e53b6: Set `ssr.resolve.conditions` to make vitest correctly respect subpath imports.
8
+
3
9
  ## 0.1.2
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@planet-matrix/mobius-model",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Mobius model.",
5
5
  "keywords": [
6
6
  "mobius",
@@ -9,12 +9,12 @@
9
9
  "homepage": "https://github.com/planet-matrix/mobius",
10
10
  "bugs": {
11
11
  "url": "https://github.com/planet-matrix/mobius/issues",
12
- "email": "kongxiangyan@planet-matrix.tech"
12
+ "email": "kongxiangyan@planetmatrix.tech"
13
13
  },
14
14
  "license": "MIT",
15
15
  "author": {
16
16
  "name": "Kong Xiangyan",
17
- "email": "kongxiangyan@planet-matrix.tech",
17
+ "email": "kongxiangyan@planetmatrix.tech",
18
18
  "url": "https://github.com/kongxiangyan"
19
19
  },
20
20
  "contributors": [],
@@ -63,7 +63,7 @@
63
63
  },
64
64
  "dependencies": {},
65
65
  "devDependencies": {
66
- "@planet-matrix/mobius-mono": "0.4.0",
66
+ "@planet-matrix/mobius-mono": "0.4.2",
67
67
  "@types/bun": "^1.3.5",
68
68
  "oxlint": "^1.36.0",
69
69
  "oxlint-tsgolint": "^0.10.1",
package/vite.config.ts CHANGED
@@ -2,6 +2,11 @@
2
2
  import { defineConfig } from "vite";
3
3
 
4
4
  const config = defineConfig({
5
+ ssr: {
6
+ resolve: {
7
+ conditions: ["@planet-matrix/mobius-mono"],
8
+ }
9
+ },
5
10
  resolve: {
6
11
  conditions: ["@planet-matrix/mobius-mono"],
7
12
  },