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 | |
import * as React from 'react'; | |
import PropTypes from 'prop-types'; | |
const contextTypes = { | |
insertCss: PropTypes.func, | |
}; | |
type StylesContextType = KeyValueOfType<Object>; | |
const { Provider, Consumer } = React.createContext<StylesContextType>({}); |
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'), | |
nodemon = require('gulp-nodemon'), | |
shell = require('gulp-shell'); | |
gulp.task('build', shell.task([ | |
'bem make' | |
])); | |
var nodemonInstance; | |
gulp.task('run', ['build'], function () { |