View javascript_let_const_scope.js
/* | |
* How Javascript scope works using let and const | |
* It is more restrictive as to where values can be accessed within functions and blocks | |
*/ | |
// This variable can be accessed from anywhere. | |
const globalScopeVar = 'Can be accessed from anywhere (global scope)'; | |
function parentScope() { | |
// This variable can only be accessed within this function and its child function and code blocks. |
View gulpfile.js
/** | |
* Gettext Scanner Script for Twig Projects | |
* v1.3 | |
* | |
* Developed by Luís Silva | |
* https://github.com/luism-s | |
*/ | |
/** | |
* Purpose: |
View bootstrap_partials.scss
// Required: | |
@import 'node_modules/bootstrap/scss/functions'; | |
@import 'node_modules/bootstrap/scss/mixins'; | |
@import "node_modules/bootstrap/scss/variables"; | |
// Optional, comment out or remove leaving the only ones needed: | |
@import "node_modules/bootstrap/scss/root"; | |
@import "node_modules/bootstrap/scss/reboot"; | |
@import "node_modules/bootstrap/scss/type"; | |
@import "node_modules/bootstrap/scss/images"; |