Skip to content

Commit a611281

Browse files
Merge pull request #5 from Comfy-Org/remove-redundant-locales
Remove redundant locales
2 parents ad028b5 + 89bc31e commit a611281

File tree

5 files changed

+12
-100
lines changed

5 files changed

+12
-100
lines changed

README.md

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -87,25 +87,31 @@ ComfyUI-React-Extension-Template/
8787
│ └── publish.yml # Automatic publishing workflow
8888
├── __init__.py # Python entry point for ComfyUI integration
8989
├── pyproject.toml # Project metadata for ComfyUI Registry
90-
├── locales/ # Internationalization files
91-
│ ├── en/
92-
│ │ └── main.json # English translations
93-
│ └── zh/
94-
│ └── main.json # Chinese translations
90+
├── dist/ # Built extension files (generated)
9591
└── ui/ # React application
92+
├── public/
93+
│ └── locales/ # Internationalization files
94+
│ ├── en/
95+
│ │ └── main.json # English translations
96+
│ └── zh/
97+
│ └── main.json # Chinese translations
9698
├── src/
9799
│ ├── App.tsx # Main React component with example UI
98100
│ ├── App.css # Styles for the example UI
99101
│ ├── index.css # Global styles and theme variables
100102
│ ├── main.tsx # Entry point for React app
103+
│ ├── vite-env.d.ts # Vite environment types
104+
│ ├── setupTests.ts # Testing environment setup
101105
│ ├── __tests__/ # Unit tests for components
102106
│ │ └── dummy.test.tsx # Example test
103107
│ └── utils/
104108
│ └── i18n.ts # Internationalization setup
109+
├── eslint.config.js # ESLint configuration
105110
├── jest.config.js # Jest testing configuration
106-
├── jest.setup.js # Testing environment setup
111+
├── jest.setup.js # Jest setup file
107112
├── package.json # npm dependencies
108113
├── tsconfig.json # TypeScript configuration
114+
├── tsconfig.node.json # TypeScript configuration for Node
109115
└── vite.config.ts # Build configuration
110116
```
111117

locales/en/main.json

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

locales/zh/main.json

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

ui/locales/en/main.json

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

ui/locales/zh/main.json

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

0 commit comments

Comments
 (0)