Skip to content

Commit

Permalink
add dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
laserpants committed Aug 23, 2015
1 parent 8ca5f55 commit 3761a02
Show file tree
Hide file tree
Showing 8,013 changed files with 1,005,875 additions and 2 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
19 changes: 19 additions & 0 deletions dist/CartStarterKit.js

Large diffs are not rendered by default.

38,911 changes: 38,911 additions & 0 deletions examples/build/BootstrapCart.js

Large diffs are not rendered by default.

43,132 changes: 43,132 additions & 0 deletions examples/build/DragDropCart.js

Large diffs are not rendered by default.

25,434 changes: 25,434 additions & 0 deletions examples/build/UnstyledCart.js

Large diffs are not rendered by default.

18 changes: 18 additions & 0 deletions gulpfile.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
var gulp = require('gulp');
var babelify = require('babelify');
var browserify = require('browserify');
var source = require('vinyl-source-stream');

gulp.task('default', function() {
browserify('./modules/CartStarterKit.jsx.js')
.transform(babelify)
.bundle()
.pipe(source('CartStarterKit.js'))
.pipe(gulp.dest('./dist'));
});

gulp.task('examples', function() {
browserify('./examples/UnstyledCart.jsx.js').transform(babelify).bundle().pipe(source('UnstyledCart.js')).pipe(gulp.dest('./examples/build'));
browserify('./examples/BootstrapCart.jsx.js').transform(babelify).bundle().pipe(source('BootstrapCart.js')).pipe(gulp.dest('./examples/build'));
browserify('./examples/DragDropCart.jsx.js').transform(babelify).bundle().pipe(source('DragDropCart.js')).pipe(gulp.dest('./examples/build'));
});
1 change: 1 addition & 0 deletions node_modules/.bin/uglify

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

30 changes: 30 additions & 0 deletions node_modules/flux/LICENSE

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

33 changes: 33 additions & 0 deletions node_modules/flux/PATENTS

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

104 changes: 104 additions & 0 deletions node_modules/flux/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 3761a02

Please sign in to comment.