xertica-ui 2.0.2 → 2.0.3
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 +8 -0
- package/README.md +1 -1
- package/bin/cli.ts +1 -1
- package/dist/cli.js +1 -1
- package/package.json +1 -1
- package/templates/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,14 @@ Versioning follows [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
|
7
7
|
|
|
8
8
|
---
|
|
9
9
|
|
|
10
|
+
## [2.0.3] — 2026-05-11
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- **CLI `update` — atualização de projeto** — novo modo no comando `update` permite atualizar os arquivos do projeto (app shell, shared, features, pages) para qualquer versão publicada do `xertica-ui`, com seleção granular de quais partes atualizar e confirmação antes de sobrescrever.
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
10
18
|
## [2.0.2] — 2026-05-11
|
|
11
19
|
|
|
12
20
|
### Fixed
|
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
> **Enterprise-grade React design system** built on Tailwind CSS v4, Radix UI, and Lucide Icons — with a robust AI-first documentation layer for precise LLM-driven composition and autonomous agent interaction.
|
|
4
4
|
|
|
5
|
-
[](https://www.npmjs.com/package/xertica-ui)
|
|
6
6
|
[](./LICENSE)
|
|
7
7
|
|
|
8
8
|
---
|
package/bin/cli.ts
CHANGED
package/dist/cli.js
CHANGED
|
@@ -528,7 +528,7 @@ var generateTokensCss = (theme) => {
|
|
|
528
528
|
var __filename = fileURLToPath(import.meta.url);
|
|
529
529
|
var __dirname = path.dirname(__filename);
|
|
530
530
|
var program = new Command();
|
|
531
|
-
program.name("xertica-ui").description("CLI to initialize Xertica UI projects").version("2.0.
|
|
531
|
+
program.name("xertica-ui").description("CLI to initialize Xertica UI projects").version("2.0.3");
|
|
532
532
|
program.command("init").description("Initialize a new Xertica UI project").argument("[directory]", "Directory to initialize in", ".").action(async (directory) => {
|
|
533
533
|
const targetDir = path.resolve(process.cwd(), directory);
|
|
534
534
|
const templatesDir = path.resolve(__dirname, "../templates");
|
package/package.json
CHANGED
package/templates/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"name": "
|
|
3
|
-
"version": "2.0.
|
|
2
|
+
"name": "xertica-ui-template",
|
|
3
|
+
"version": "2.0.3",
|
|
4
4
|
"private": true,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"react-dom": "^18.3.1",
|
|
18
18
|
"react-router-dom": "^7.1.3",
|
|
19
19
|
"sonner": "^1.7.3",
|
|
20
|
-
"xertica-ui": "^2.0.
|
|
20
|
+
"xertica-ui": "^2.0.3"
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|
|
23
23
|
"@eslint/js": "^9.18.0",
|