Skip to content

Commit

Permalink
Fix lint in devtools
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Ridgway committed Apr 13, 2016
1 parent 358535c commit 2100eca
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions packages/fluxible-plugin-devtools/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
* Copyright 2016, Yahoo! Inc.
* Copyrights licensed under the New BSD License. See the accompanying LICENSE file for terms.
*/
module.exports = require('./dist/lib/devtools-plugin').default;
module.exports.Actions = require('./dist/components/Actions').default;
module.exports.ActionTree = require('./dist/components/ActionTree').default;
module.exports = require('./dist/lib/devtools-plugin')['default'];
module.exports.Actions = require('./dist/components/Actions')['default'];
module.exports.ActionTree = require('./dist/components/ActionTree')['default'];
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
'use strict';
var expect = require('chai').expect;
var async = require('async');
var devToolsPlugin = require('../../../dist/lib/devtools-plugin').default;
var devToolsPlugin = require('../../../dist/lib/devtools-plugin')['default'];
var FluxibleApp = require('fluxible');

describe('devToolsPlugin', function () {
Expand Down

0 comments on commit 2100eca

Please sign in to comment.