script files tiny doc tweaks
This commit is contained in:
parent
37b21ae947
commit
56246053ca
|
@ -1,6 +1,5 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
## Run the build script whenever there is a change in src folder
|
## Runs build script whenever there is a change in src folder
|
||||||
|
|
||||||
|
|
||||||
echo 'Watching changes on src/'
|
echo 'Watching changes on src/'
|
||||||
|
|
||||||
|
|
1
build.sh
1
build.sh
|
@ -1,5 +1,6 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Loads user-defined variables at build-config file
|
||||||
source build-config.cfg
|
source build-config.cfg
|
||||||
|
|
||||||
## Only run npm build if there was a change in a .js or .vue file
|
## Only run npm build if there was a change in a .js or .vue file
|
||||||
|
|
|
@ -6,7 +6,6 @@ command -v sass >/dev/null 2>&1 || {
|
||||||
exit 1;
|
exit 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
# Define o caminho.
|
|
||||||
echo "Compilando Sass..."
|
echo "Compilando Sass..."
|
||||||
|
|
||||||
sass -E 'UTF-8' --cache-location .tmp/sass-cache-1 src/views/admin/scss/tainacan-admin.scss:src/assets/css/tainacan-admin.css
|
sass -E 'UTF-8' --cache-location .tmp/sass-cache-1 src/views/admin/scss/tainacan-admin.scss:src/assets/css/tainacan-admin.css
|
||||||
|
|
Loading…
Reference in New Issue