@planet-matrix/mobius-mono 0.3.0 → 0.3.1

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-mono
2
2
 
3
+ ## 0.3.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 5216b44: fix $schema path for oxlintrc.json and oxfmtrc.json
8
+
3
9
  ## 0.3.0
4
10
 
5
11
  ### Minor Changes
package/README.md CHANGED
@@ -16,9 +16,16 @@ Repository rules as code.
16
16
 
17
17
  - 可执行文件放在单独的 `bin` 目录,不需要打包,通过 `package.json` 的 `bin` 字段对外提供。
18
18
  - `package.json` 不需要设置 `main` 字段。
19
+ - 本地发包时,npm token 写在个人的环境变量中,通过 CI/CD 发包时,使用 [Trusted publishing](https://docs.npmjs.com/trusted-publishers)。
19
20
 
20
21
  ## Todos
21
22
 
22
23
  [] 当 oxfmt 支持在 monorepo 中为不同的包添加不同的配置之后将其引入。
23
24
  [] 当 oxlint `extends` 字段支持指定包产物时,更新所有相关配置。
24
25
  [] `change publish` 支持 dry-run 参数。
26
+ [] 将 `tsconfig.json` 中的 `compilerOptions` 移除。
27
+ - see: https://github.com/oven-sh/bun/issues/11752
28
+ - see: https://github.com/oven-sh/bun/issues/23695
29
+ - see: https://github.com/oven-sh/bun/issues/25622
30
+ [] 待自动识别能力恢复之后,将 `.vscode/settings.json` 中的 `oxc.path.oxfmt` 和 `oxc.path.oxlint` 移除。
31
+ - see: https://github.com/oxc-project/oxc/blob/main/editors/vscode/client/ConfigService.ts#L172
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@planet-matrix/mobius-mono",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "exports": {
@@ -25,20 +25,20 @@
25
25
  "prepublishOnly": "bun run build"
26
26
  },
27
27
  "devDependencies": {
28
- "@types/bun": "catalog:",
29
- "@types/node": "catalog:",
30
- "oxlint": "catalog:",
31
- "oxlint-tsgolint": "catalog:",
32
- "oxfmt": "catalog:",
33
- "typescript": "catalog:",
34
- "@typescript/native-preview": "catalog:"
28
+ "@types/bun": "^1.3.5",
29
+ "@types/node": "^25.0.3",
30
+ "oxlint": "^1.36.0",
31
+ "oxlint-tsgolint": "^0.10.1",
32
+ "oxfmt": "^0.21.0",
33
+ "typescript": "^5.9.0",
34
+ "@typescript/native-preview": "^7.0.0-dev.20260101.1"
35
35
  },
36
36
  "dependencies": {
37
- "zx": "catalog:",
38
- "@opentui/core": "catalog:"
37
+ "zx": "^8.8.5",
38
+ "@opentui/core": "^0.1.67"
39
39
  },
40
40
  "peerDependencies": {
41
- "@changesets/cli": "catalog:"
41
+ "@changesets/cli": "^2.29.8"
42
42
  },
43
43
  "repository": {
44
44
  "type": "git",
package/src/app/index.ts CHANGED
File without changes
@@ -1,5 +1,5 @@
1
1
  {
2
- "$schema": "../../node_modules/oxfmt/configuration_schema.json",
2
+ "$schema": "../../../node_modules/oxfmt/configuration_schema.json",
3
3
  "ignorePatterns": [],
4
4
  "arrowParens": "always",
5
5
  "bracketSameLine": false,
@@ -1,5 +1,5 @@
1
1
  {
2
- "$schema": "../../node_modules/oxlint/configuration_schema.json",
2
+ "$schema": "../../../node_modules/oxlint/configuration_schema.json",
3
3
  // Paths of configuration files that this configuration file extends (inherits from).
4
4
  "extends": [],
5
5
  "plugins": [],