@sankhyalabs/ez-design 1.0.21 → 1.0.22
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 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,20 +1,23 @@
|
|
|
1
1
|
## Sankhya Design System
|
|
2
|
-
|
|
2
|
+
Demostração do [ez-desing](https://zeroheight.com/032f91938/v/latest/p/01732d-cores).
|
|
3
3
|
|
|
4
4
|
### Clone o projeto LiveReload na pasta sk-java
|
|
5
5
|
`git clone https://git.sankhya.com.br/sankhyalabs/ez-design.git`
|
|
6
6
|
|
|
7
7
|
### Instalando o Gulp
|
|
8
|
-
|
|
8
|
+
A primeira coisa que você vai precisar é instalar o [Node](http://nodejs.org/).
|
|
9
9
|
### Execute o comando no cmd
|
|
10
|
-
npm
|
|
11
|
-
npm
|
|
10
|
+
npm i
|
|
11
|
+
npm i gulp -g
|
|
12
12
|
|
|
13
13
|
## Executando teste
|
|
14
14
|
npm run dev
|
|
15
|
-
|
|
15
|
+
### Adicionar mudanças ao Index para commit de apenas um arquivo:
|
|
16
|
+
git add <caminho_do_arquivo>
|
|
17
|
+
### Fazer um commit:
|
|
18
|
+
git commit -m "comentários das alterações"
|
|
16
19
|
## Liberando uma nova build
|
|
17
20
|
npm version patch
|
|
18
21
|
git add *
|
|
19
|
-
git commit -m "
|
|
20
|
-
git push
|
|
22
|
+
git commit -m "Atualizando versão"
|
|
23
|
+
git push
|