swl-core 1.2.0 → 1.2.1

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 CHANGED
@@ -1,7 +1,7 @@
1
- # SWLS Core v1.2.0
1
+ # SWLS Core v1.2.1
2
2
  **Stellar Web Language Styling** — Linguagem de estilização em português que compila para CSS.
3
3
 
4
- ```
4
+ ```bash
5
5
  npm install -g swl-core
6
6
  swls build meusite.swls
7
7
  ```
@@ -76,29 +76,33 @@ para:
76
76
 
77
77
  ## Instalação
78
78
 
79
+ ### Opção 1: Via npm (Recomendado)
80
+ Para utilizar o ecossistema pronto diretamente no seu terminal:
79
81
  ```bash
80
- # Via npm (global)
81
82
  npm install -g swl-core
83
+ ```
82
84
 
83
- # Via repositório
84
- git clone https://github.com/swls-lang/swl-core
85
- cd swl-core
85
+ ### Opção 2: Via Repositório (Para Desenvolvimento)
86
+ Se você deseja clonar o projeto para contribuir com o core ou testar localmente:
87
+ ```bash
88
+ git clone https://github.com
89
+ cd swlLang
86
90
  npm install
87
- npm link
88
91
  ```
89
92
 
90
93
  ---
91
94
 
92
95
  ## Extensão VS Code
93
96
 
94
- A extensão está em `vscode-extension/`. Para instalar localmente:
97
+ O suporte completo para desenvolvimento de arquivos `.swls` está disponível na loja oficial de extensões da Microsoft.
95
98
 
96
- ```bash
97
- cd vscode-extension
98
- npm install -g @vscode/vsce
99
- vsce package
100
- code --install-extension swls-language-support-1.2.0.vsix
101
- ```
99
+ ### Como Instalar:
100
+ 1. Abra o **VS Code**.
101
+ 2. até a aba de Extensões (`Ctrl+Shift+X`).
102
+ 3. Pesquise por **Stellar Web Language Styling (SWLS) Tools**.
103
+ 4. Clique em **Instalar**.
104
+
105
+ Você também pode acessar a página pelo navegador e instalar via [VS Code Marketplace](https://visualstudio.com).
102
106
 
103
107
  A extensão inclui:
104
108
  - Syntax highlighting completo
@@ -164,19 +168,15 @@ fw.use({
164
168
 
165
169
  ---
166
170
 
167
- ## Publicação
168
-
169
- - **npm:** `npm publish`
170
- - **GitHub:** `https://github.com/swls-lang/swl-core`
171
- - **VS Code Marketplace:** `vsce publish` (requer conta Publisher)
172
-
173
- ---
174
-
175
171
  ## Limitações v1.2
176
172
 
177
173
  - Operações matemáticas inline (`@tamanho * 2`) não são calculadas
178
174
  - Prefixos de vendor (`-webkit-`, `-moz-`) devem ser escritos manualmente
179
175
  - Sem suporte a `calc()` nativo com variáveis SWLS
180
176
 
177
+ ## Links Oficiais
178
+ - **NPM:** [swl-core](https://npmjs.com)
179
+ - **Perfil do Autor:** [maycon.dev](https://npmjs.com)
180
+
181
181
  ## Licença
182
182
  MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "swl-core",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "description": "SWLS — Stellar Web Language Styling. Linguagem de estilização em português que compila para CSS.",
5
5
  "main": "index.js",
6
6
  "bin": {