Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
danielholmes committed Sep 15, 2017
1 parent f7eb8e4 commit 80a9e17
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,13 @@ class RelayCompilerWebpackPlugin {

const watchman = options.watchman !== undefined ? options.watchman : true;
const extensions = options.extensions !== undefined ? options.extensions : ['js'];
const include = options.include !== undefined ? options.include : ['**'];
const exclude = options.exclude !== undefined ? options.exclude : ['**/node_modules/**', '**/__mocks__/**', '**/__tests__/**', '**/__generated__/**'];

const fileOptions = {
extensions,
include: ['**'],
exclude: ['**/node_modules/**', '**/__mocks__/**', '**/__tests__/**', '**/__generated__/**']
include,
exclude
};

this.parserConfigs.default.baseDir = options.src;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dhau/relay-compiler-webpack-plugin",
"version": "0.5.2",
"version": "0.5.3",
"description": "Automatically run the Relay Compiler from Webpack",
"repository": {
"type": "git",
Expand Down

0 comments on commit 80a9e17

Please sign in to comment.