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 +22 -22
- package/package.json +1 -1
- package/vscode-extension/icons/swls-icon.png +0 -0
- package/vscode-extension/package-lock.json +1477 -0
- package/vscode-extension/package.json +53 -29
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
# SWLS Core v1.2.
|
|
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
|
-
|
|
84
|
-
|
|
85
|
-
|
|
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
|
-
|
|
97
|
+
O suporte completo para desenvolvimento de arquivos `.swls` está disponível na loja oficial de extensões da Microsoft.
|
|
95
98
|
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
99
|
+
### Como Instalar:
|
|
100
|
+
1. Abra o **VS Code**.
|
|
101
|
+
2. Vá 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
|
Binary file
|