@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 +6 -0
- package/README.md +7 -0
- package/package.json +11 -11
- package/src/app/index.ts +0 -0
- package/src/internals/lint/oxfmtrc.json +1 -1
- package/src/internals/lint/oxlintrc.json +1 -1
package/CHANGELOG.md
CHANGED
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.
|
|
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": "
|
|
29
|
-
"@types/node": "
|
|
30
|
-
"oxlint": "
|
|
31
|
-
"oxlint-tsgolint": "
|
|
32
|
-
"oxfmt": "
|
|
33
|
-
"typescript": "
|
|
34
|
-
"@typescript/native-preview": "
|
|
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": "
|
|
38
|
-
"@opentui/core": "
|
|
37
|
+
"zx": "^8.8.5",
|
|
38
|
+
"@opentui/core": "^0.1.67"
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|
|
41
|
-
"@changesets/cli": "
|
|
41
|
+
"@changesets/cli": "^2.29.8"
|
|
42
42
|
},
|
|
43
43
|
"repository": {
|
|
44
44
|
"type": "git",
|
package/src/app/index.ts
CHANGED
|
File without changes
|