This file contains hidden or 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
| // TODO: Remove this component once fixed: https://github.com/erikras/redux-form-material-ui/issues/148 | |
| import React, { Component } from 'react' | |
| import pick from 'lodash/pick' | |
| import mapReduxFormError from '../../utils/mapReduxFormError' | |
| import MuiAutoComplete from 'material-ui/AutoComplete' | |
| class AutoComplete extends Component { |
This file contains hidden or 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 runSequence = require('run-sequence'); | |
| var minifyCss = require('gulp-minify-css'); | |
| var buildDir = './build/'; | |
| var minifyCssSettings = { advanced: true, aggressiveMerging: true }; | |
| // Main build | |
| gulp.task('build', function() { |
This file contains hidden or 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
| <?php namespace App\Http\ViewComposers; | |
| use Illuminate\Contracts\View\View; | |
| use Auth; | |
| class AppComposer { | |
| /** | |
| * Create a new app composer. | |
| */ |
This file contains hidden or 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'), | |
| gulpif = require('gulp-if'), | |
| del = require('del'), | |
| minimist = require('minimist'), | |
| less = require('gulp-less'), | |
| sourcemaps = require('gulp-sourcemaps'), | |
| autoprefixer = require('gulp-autoprefixer'), | |
| browserify = require('gulp-browserify'), | |
| babel = require('gulp-babel'), | |
| minifyCss = require('gulp-minify-css'), |