Skip to content

Commit

Permalink
Export default options so other dependent packages can test against c…
Browse files Browse the repository at this point in the history
…hanging properties (#631)

* export default options so other dependent packages can test against changing properties

* trigger happy and missed the import
  • Loading branch information
jbenesch authored and gigabo committed Aug 26, 2016
1 parent 9ffe69b commit 36d9f75
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/react-server-cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@
},
"devDependencies": {
"babel-preset-react-server": "^0.4.4",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-eslint": "^3.0.1",
"nsp": "^2.4.0",
"react-server-gulp-module-tagger": "^0.4.5",
"rimraf": "^2.5.2"
Expand Down
2 changes: 2 additions & 0 deletions packages/react-server-cli/src/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
const fs = require('fs');
const run = require("./run").default;
const parseCliArgs = require("./parseCliArgs").default;
const defaultOptions = require("./defaultOptions").default;

require.extensions['.css'] =
require.extensions['.less'] =
Expand All @@ -20,4 +21,5 @@ require.extensions['.md'] =
module.exports = {
parseCliArgs,
run,
defaultOptions,
};

0 comments on commit 36d9f75

Please sign in to comment.