This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// @flow | |
type Interpolation = ((executionContext: Object) => string) | string | number; | |
type StyledComponent = ( | |
strings: Array<string>, | |
...interpolations: Array<Interpolation> | |
) => ReactClass<any>; | |
declare module 'styled-components' { | |
declare var exports: { | |
(baseComponent: ReactClass<any>): StyledComponent, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
##################### Elasticsearch Configuration Example ##################### | |
# This file contains an overview of various configuration settings, | |
# targeted at operations staff. Application developers should | |
# consult the guide at <http://elasticsearch.org/guide>. | |
# | |
# The installation procedure is covered at | |
# <http://elasticsearch.org/guide/en/elasticsearch/reference/current/setup.html>. | |
# | |
# Elasticsearch comes with reasonable defaults for most settings, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var gulp = require('gulp'); | |
var gulpSass = require('gulp-sass'); | |
var minifyCss = require('gulp-minify-css'); | |
var sourcemaps = require('gulp-sourcemaps'); | |
var prefix = require('gulp-autoprefixer'); | |
var browserSync = require('browser-sync').create(); | |
gulp.task('scss', function() { | |
return gulp.src('style.scss') | |
.pipe(sourcemaps.init()) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Gulpfile | |
* @author Michael McDermott | |
* Created on 5/12/15. | |
*/ | |
'use strict'; | |
var gulp = require('gulp'); | |
var path = require('path'); |