diff options
author | 2020-05-19 22:52:08 +0200 | |
---|---|---|
committer | 2020-05-19 22:52:08 +0200 | |
commit | f9d8b7a5a402e19b0cb16fd937e0f19c43a6e699 (patch) | |
tree | 0b7a3d6cc31c8975921a7d7fcf6c4bc7e0e020e2 /source/features/edit-files-faster.tsx | |
parent | 508c93a3f4cf219f343d19b927ae0d07ec3ad7f8 (diff) | |
download | refined-github-f9d8b7a5a402e19b0cb16fd937e0f19c43a6e699.tar.gz refined-github-f9d8b7a5a402e19b0cb16fd937e0f19c43a6e699.tar.zst refined-github-f9d8b7a5a402e19b0cb16fd937e0f19c43a6e699.zip |
Meta: Reorganize utility functions (#3110)
Diffstat (limited to 'source/features/edit-files-faster.tsx')
-rw-r--r-- | source/features/edit-files-faster.tsx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/source/features/edit-files-faster.tsx b/source/features/edit-files-faster.tsx index 07bfb82d..285607d9 100644 --- a/source/features/edit-files-faster.tsx +++ b/source/features/edit-files-faster.tsx @@ -4,11 +4,11 @@ import select from 'select-dom'; import PencilIcon from 'octicon/pencil.svg'; import * as pageDetect from 'github-url-detection'; -import {wrap} from '../libs/dom-utils'; -import features from '../libs/features'; -import {parseRoute} from '../libs/utils'; -import getDefaultBranch from '../libs/get-default-branch'; -import onFileListUpdate from '../libs/on-file-list-update'; +import {wrap} from '../helpers/dom-utils'; +import features from '.'; +import {parseRoute} from '../github-helpers'; +import getDefaultBranch from '../github-helpers/get-default-branch'; +import onFileListUpdate from '../github-events/on-file-list-update'; async function init(): Promise<void> { const defaultBranch = await getDefaultBranch(); |