acemyjob-ui 0.11.4 → 0.12.0
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/README.md +25 -0
- package/dist/acemyjob-ui.es.js +480 -343
- package/dist/acemyjob-ui.umd.js +4 -4
- package/dist/component/FileUpload/index.d.ts +17 -0
- package/dist/index.d.ts +2 -0
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -222,3 +222,28 @@ MIT © [Your Name](https://github.com/yourusername)
|
|
|
222
222
|
## 🤝 Contributing
|
|
223
223
|
|
|
224
224
|
Contributions are welcome! Please feel free to submit a Pull Request.
|
|
225
|
+
|
|
226
|
+
### Local Testing with AceMyJob-Web
|
|
227
|
+
|
|
228
|
+
When developing components, you can quickly test changes in the Web project without waiting for CI/CD:
|
|
229
|
+
|
|
230
|
+
```bash
|
|
231
|
+
# 1. Build the UI library
|
|
232
|
+
npm run build
|
|
233
|
+
|
|
234
|
+
# 2. Sync dist to Web project's node_modules
|
|
235
|
+
cp -r dist/* ../AceMyJob-Web/node_modules/acemyjob-ui/dist/
|
|
236
|
+
|
|
237
|
+
# 3. Refresh browser to see changes
|
|
238
|
+
```
|
|
239
|
+
|
|
240
|
+
**Windows (PowerShell):**
|
|
241
|
+
```powershell
|
|
242
|
+
npm run build; Copy-Item -Path "dist/*" -Destination "../AceMyJob-Web/node_modules/acemyjob-ui/dist/" -Recurse -Force
|
|
243
|
+
```
|
|
244
|
+
|
|
245
|
+
**Windows (Command Prompt):**
|
|
246
|
+
```cmd
|
|
247
|
+
npm run build && xcopy /E /Y /I "dist\*" "..\AceMyJob-Web\node_modules\acemyjob-ui\dist\"
|
|
248
|
+
```
|
|
249
|
+
|