$ git checkout -b my-feature
... modify code ....
$ git add <filename>
$ git commit -m “my feature is this”
import * as React from "react" | |
// For sharing a search string among components | |
// export const searchStore = new Store(""); | |
// Register class components on mount | |
// componentDidMount() { searchStore.registerComponent(this) } | |
// And unregister on unmount | |
// componentWillUnmount() { searchStore.unregisterComponent(this) } |
var gulp = require('gulp'); | |
var coffee = require('gulp-coffee'); | |
gulp.task('scripts', function () { | |
gulp.src('src/*.coffee') | |
.pipe(coffee()) | |
.pipe(gulp.dest('./')); | |
}); | |
gulp.task('watch', function () { |
# Compiled source # | |
################### | |
*.com | |
*.class | |
*.dll | |
*.exe | |
*.o | |
*.so | |
# Packages # |
<div id="enigma"></div> |