Skip to content

Instantly share code, notes, and snippets.

View jpmorandesign's full-sized avatar

J. Patrick Moran jpmorandesign

  • J. P. Moran Design, Inc.
  • Fort Collins, CO
View GitHub Profile
@passcod
passcod / __why-and-how-to-use.md
Last active March 22, 2023 13:33
Bootstrap 4 mixins for spacing utilities without classes

Why?

This:

.action {
  @extend .ml-3;
}
@Lego2012
Lego2012 / gruntfile.js
Last active September 18, 2017 14:55
Comparing Gulp and Grunt #gulp
/*!
* Grunt
* $ npm install grunt-contrib-uglify grunt-autoprefixer grunt-contrib-cssmin grunt-contrib-imagemin grunt-contrib-sass grunt-contrib-watch grunt-contrib-concat grunt-contrib-clean grunt-contrib-jshint grunt-notify --save-dev
*/
module.exports = function(grunt) {
grunt.initConfig({
// Sass
@pejicbgd
pejicbgd / Gruntfile.js
Last active March 15, 2017 21:21
Example of gruntfile.js and package.json file for automated workflow
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
uglify: {
options: {
banner: '/*! <%= pkg.name %> <%= grunt.template.today("yyyy-mm-dd") %>'
},
build: {
src: 'path-to-source',
@jimmyandrade
jimmyandrade / .gitignore
Created December 7, 2015 16:43
Essential Gruntfile.js and NPM Dependencies
# Bower
bower_components/
# Node
node_modules/
# Dist
dist/
src/css
src/js
@hofmannsven
hofmannsven / README.md
Last active November 8, 2023 22:49
SCSS Cheatsheet