Skip to content

Commit

Permalink
Rename creators.js import to creators (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelKim authored and fg123 committed May 6, 2018
1 parent 2681eff commit 821b24d
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/background/commands/mkdir.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* @flow */

import {createDirectory} from 'creators.js';
import {createDirectory} from 'creators';
import { getDirectory } from 'utils';

import type { StoreState } from 'types';
Expand Down
2 changes: 1 addition & 1 deletion src/background/commands/window/split.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* @flow */

import { createWindow } from 'creators.js';
import { createWindow } from 'creators';

import type { StoreState } from 'types';

Expand Down
2 changes: 1 addition & 1 deletion src/background/commands/workspace.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* @flow */

import { createWorkspace } from 'creators.js';
import { createWorkspace } from 'creators';

import type { StoreState } from 'types';

Expand Down
2 changes: 1 addition & 1 deletion src/background/reducers/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import u from 'updeep';
import { executeCommand } from 'background/commands';
import { clear, save } from 'background/storage';
import { createDirectory, createFile, createWorkspace } from 'creators.js';
import { createDirectory, createFile, createWorkspace } from 'creators';
import {
findWindow,
getBorderingBottom,
Expand Down
2 changes: 1 addition & 1 deletion src/background/scripts/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import { isCommand } from 'background/commands';
import store from 'background/store';
import { createFile, createTerminal, createWindow } from 'creators.js';
import { createFile, createTerminal, createWindow } from 'creators';
import { findWindow, getDirectory, getFile, getPath } from 'utils';

import type { Directory, File, Script as ScriptType, Window } from 'types';
Expand Down
2 changes: 1 addition & 1 deletion src/background/storage.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* @flow */

import setupFile from 'background/setup';
import { createDirectory, createFile, createWorkspace } from 'creators.js';
import { createDirectory, createFile, createWorkspace } from 'creators';

import type { StorageState, StoreState } from 'types';

Expand Down
2 changes: 1 addition & 1 deletion src/mercury/store.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* @flow */

import { createDirectory } from 'creators.js';
import { createDirectory } from 'creators';
import reducer from 'mercury/reducer';
import { createStore } from 'redux';

Expand Down

0 comments on commit 821b24d

Please sign in to comment.