Skip to content
This repository has been archived by the owner on Apr 15, 2019. It is now read-only.

Commit

Permalink
🔥 Remove migrated files
Browse files Browse the repository at this point in the history
  • Loading branch information
shuse2 committed Jul 31, 2018
1 parent 9f572d0 commit 9dbe2e3
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 109 deletions.
20 changes: 15 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,21 @@
"@oclif/plugin-help"
],
"topics": {
"account": { "description": "Manages Lisk accounts." },
"config": { "description": "Manages Lisk Commander configuration." },
"copyright": { "description": "Displays copyright notice." },
"help": { "description": "Displays help." },
"warranty": { "description": "Displays warranty notice." }
"account": {
"description": "Manages Lisk accounts."
},
"config": {
"description": "Manages Lisk Commander configuration."
},
"copyright": {
"description": "Displays copyright notice."
},
"help": {
"description": "Displays help."
},
"warranty": {
"description": "Displays warranty notice."
}
}
},
"files": [
Expand Down
2 changes: 1 addition & 1 deletion src/commands/account/create.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
*
*/
import BaseCommand from '../../base';
import cryptography from '../../utils/cryptography';
import * as cryptography from '../../utils/cryptography';
import { createMnemonicPassphrase } from '../../utils/mnemonic';

export default class CreateCommand extends BaseCommand {
Expand Down
2 changes: 1 addition & 1 deletion src/commands/account/show.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import { flags as flagParser } from '@oclif/command';
import BaseCommand from '../../base';
import getInputsFromSources from '../../utils/input';
import cryptography from '../../utils/cryptography';
import * as cryptography from '../../utils/cryptography';
import commonFlags from '../../utils/flags';

const processInput = ({ passphrase }) => {
Expand Down
45 changes: 0 additions & 45 deletions src/commands_old/create_account.js

This file was deleted.

55 changes: 0 additions & 55 deletions src/commands_old/show_account.js

This file was deleted.

2 changes: 1 addition & 1 deletion test/commands/account/create.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import { expect, test } from '@oclif/test';
import * as config from '../../../src/utils/config';
import * as print from '../../../src/utils/print';
import cryptography from '../../../src/utils/cryptography';
import * as cryptography from '../../../src/utils/cryptography';
import * as mnemonic from '../../../src/utils/mnemonic';

describe('account:create', () => {
Expand Down
2 changes: 1 addition & 1 deletion test/commands/account/show.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import { expect, test } from '@oclif/test';
import * as config from '../../../src/utils/config';
import * as print from '../../../src/utils/print';
import cryptography from '../../../src/utils/cryptography';
import * as cryptography from '../../../src/utils/cryptography';
import * as getInputsFromSources from '../../../src/utils/input';

describe('account:show', () => {
Expand Down

0 comments on commit 9dbe2e3

Please sign in to comment.