elcrm 1.0.0 → 1.1.2
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 +10 -0
- package/dist/index.js +2828 -425
- package/dist/vite/discover-lib.js +4 -4
- package/dist/vite/plugin-css-scoped.js +2 -2
- package/dist/vite/postbuild.d.ts +5 -0
- package/dist/vite/postbuild.js +59 -0
- package/package.json +10 -4
- package/templates/elcrm-cursor/AGENTS.md +13 -0
- package/templates/elcrm-cursor/rules/elcrm-lib.mdc +101 -0
- package/templates/elcrm-cursor/rules/elcrm-module.mdc +25 -0
- package/templates/elcrm-cursor/rules/elcrm-packages.mdc +43 -0
- package/templates/elcrm-cursor/rules/elcrm-rpc.mdc +23 -0
- package/templates/elcrm-cursor/rules/elcrm-server.mdc +30 -0
- package/templates/elcrm-cursor/rules/elcrm-theme.mdc +13 -0
- package/templates/elcrm-cursor/rules/elcrm-ui.mdc +41 -0
- package/templates/elcrm-cursor/rules/elcrm.mdc +43 -0
- package/templates/elcrm-docs/ALERT.elCRM.md +26 -0
- package/templates/elcrm-docs/API.elCRM.md +38 -0
- package/templates/elcrm-docs/BUTTON.elCRM.md +36 -0
- package/templates/elcrm-docs/CLI.elCRM.md +27 -0
- package/templates/elcrm-docs/COMPONENTS.elCRM.md +68 -0
- package/templates/elcrm-docs/FORM.elCRM.md +39 -0
- package/templates/elcrm-docs/ICONS.elCRM.md +40 -0
- package/templates/elcrm-docs/MODAL.elCRM.md +41 -0
- package/templates/elcrm-docs/NOTICE.elCRM.md +31 -0
- package/templates/elcrm-docs/NOTIFICATIONS.elCRM.md +39 -0
- package/templates/elcrm-docs/PASSKEY.elCRM.md +26 -0
- package/templates/elcrm-docs/ROUTER.elCRM.md +34 -0
- package/templates/elcrm-docs/SERVER.elCRM.md +53 -0
- package/templates/elcrm-docs/SOCKET.elCRM.md +34 -0
- package/templates/elcrm-docs/TOOLTIP.elCRM.md +25 -0
- package/templates/panel/README.md +2 -26
- package/templates/panel/api/package.json +2 -5
- package/templates/panel/api/src/index.ts +11 -20
- package/templates/panel/api/src/lib/cron.ts +10 -7
- package/templates/panel/api/src/lib/db.ts +3 -5
- package/templates/panel/api/src/lib/jwt.ts +1 -1
- package/templates/panel/api/src/routes/auth.ts +20 -8
- package/templates/panel/web/package.json +4 -4
- package/templates/panel/web/src/modules/Account/sections/Profile.tsx +0 -1
- package/templates/panel/web/src/modules/Settings/sections/General.tsx +0 -2
- package/templates/panel/web/src/modules/Settings/sections/Profile.tsx +0 -1
- package/templates/panel/web/src/pages/Auth.tsx +0 -1
- package/templates/panel/web/src/style/elcrm.css +4 -1
- package/templates/panel/web/src/style/theme-dark.css +65 -3
- package/templates/panel/web/src/style/theme-light.css +65 -3
- package/templates/panel/web/src/style/theme.css +73 -3
package/README.md
CHANGED
|
@@ -2,6 +2,16 @@
|
|
|
2
2
|
|
|
3
3
|
CLI для экосистемы `@elcrm/*`: обновление зависимостей, шаблоны проектов, миграции и проверка стандартов.
|
|
4
4
|
|
|
5
|
+
```bash
|
|
6
|
+
bun i -g elcrm
|
|
7
|
+
elcrm test # server или front — по package.json (@elcrm/server?)
|
|
8
|
+
elcrm css # недостающие CSS-токены @elcrm/* в theme-*
|
|
9
|
+
elcrm doctor --fix
|
|
10
|
+
elcrm update
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Документация: [DOCS.md](./DOCS.md).
|
|
14
|
+
|
|
5
15
|
## Лицензия
|
|
6
16
|
|
|
7
17
|
MIT © MaSkal
|