Skip to content

Commit

Permalink
Don't copy todomvc-flux into starter kit
Browse files Browse the repository at this point in the history
Test Plan: Ran `grunt release:starter` and looked in build/starter/ to see all the examples but not todomvc-flux.
  • Loading branch information
sophiebits committed Jul 11, 2014
1 parent c64df89 commit 47d3339
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion grunt/tasks/release.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,22 @@ var GH_PAGES_PATH = '../react-gh-pages/';
var GH_PAGES_GLOB = [GH_PAGES_PATH + '*'];

var EXAMPLES_PATH = 'examples/';
var EXAMPLES_GLOB = [EXAMPLES_PATH + '/**/*.*'];
var EXAMPLES_GLOB = [
// todomvc-flux has too many other dependencies, so we'll leave it out
EXAMPLES_PATH + '/README.md',
EXAMPLES_PATH + '/ballmer-peak/**/*.*',
EXAMPLES_PATH + '/basic/**/*.*',
EXAMPLES_PATH + '/basic-commonjs/**/*.*',
EXAMPLES_PATH + '/basic-jsx/**/*.*',
EXAMPLES_PATH + '/basic-jsx-external/**/*.*',
EXAMPLES_PATH + '/basic-jsx-harmony/**/*.*',
EXAMPLES_PATH + '/basic-jsx-precompile/**/*.*',
EXAMPLES_PATH + '/jquery-bootstrap/**/*.*',
EXAMPLES_PATH + '/jquery-mobile/**/*.*',
EXAMPLES_PATH + '/server-rendering/**/*.*',
EXAMPLES_PATH + '/shared/**/*.*',
EXAMPLES_PATH + '/transitions/**/*.*'
];

var STARTER_PATH = 'starter/';
var STARTER_GLOB = [STARTER_PATH + '/**/*.*'];
Expand Down

0 comments on commit 47d3339

Please sign in to comment.