Skip to content

Commit af48f53

Browse files
CoderJackZhuclaude
andcommitted
refactor: move Obsidian artifacts to repo root & add Neuxverse branding
Move manifest.json, styles.css, versions.json to repo root to meet Obsidian community plugin submission requirements. Update esbuild output path, bump-version script, CI workflows, and gitignore accordingly. Remove duplicate release.yml workflow. Add Neuxverse organization logo and update VS Code publisher to neuxverse. Add branding footer to README. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
1 parent 801cdcd commit af48f53

13 files changed

Lines changed: 65 additions & 75 deletions

File tree

.github/workflows/release-obsidian.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ jobs:
3333
with:
3434
name: "Obsidian Plugin v${{ steps.tag.outputs.version }}"
3535
files: |
36-
packages/obsidian/main.js
37-
packages/obsidian/manifest.json
38-
packages/obsidian/styles.css
36+
main.js
37+
manifest.json
38+
styles.css
3939
env:
4040
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/release.yml

Lines changed: 0 additions & 67 deletions
This file was deleted.

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
node_modules/
22
dist/
3+
/main.js
34
*.vsix
45
.DS_Store
56
.claude/

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,3 +150,13 @@ pnpm --filter @mindctx/core test
150150
## 许可证
151151

152152
MIT
153+
154+
---
155+
156+
<p align="center">
157+
<a href="https://github.com/CoderJackZhu">
158+
<img src="assets/neuxverse-logo.png" alt="Neuxverse" width="48">
159+
</a>
160+
<br>
161+
Built by <strong>Neuxverse</strong>
162+
</p>

assets/neuxverse-logo.png

17.5 KB
Loading

assets/neuxverse-logo.svg

Lines changed: 47 additions & 0 deletions
Loading

packages/obsidian/.gitignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

packages/obsidian/esbuild.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ esbuild.build({
88
external: ['obsidian', 'electron', '@codemirror/*', '@lezer/*'],
99
format: 'cjs',
1010
target: 'es2022',
11-
outfile: 'main.js',
11+
outfile: '../../main.js',
1212
sourcemap: prod ? false : 'inline',
1313
minify: prod,
1414
jsxFactory: 'h',

packages/vscode/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"displayName": "MindCtx",
44
"description": "Markdown-first structured outline editor with mind map view. Write Markdown, see outlines, switch to mind maps.",
55
"version": "0.1.0",
6-
"publisher": "mindctx",
6+
"publisher": "neuxverse",
77
"license": "MIT",
88
"icon": "assets/icon.png",
99
"repository": {

0 commit comments

Comments
 (0)