Skip to content

Commit

Permalink
chore: updated class names for commands
Browse files Browse the repository at this point in the history
  • Loading branch information
aryanjassal committed Sep 30, 2024
1 parent c019053 commit 0cad73d
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion npmDepsHash
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sha256-lbtIQDruaGlF/lyCqRQLatL6n26VzaF0ezJXn8RgUGg=
sha256-8rBOwTKsBhskBLbHJJrIwwtiW6FRXD8sOVvaGSW8I48=
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@
"nexpect": "^0.6.0",
"node-gyp-build": "^4.4.0",
"nodemon": "^3.0.1",
"polykey": "^1.13.0",
"polykey": "^1.14.0",
"prettier": "^3.0.0",
"shelljs": "^0.8.5",
"shx": "^0.3.4",
Expand Down
4 changes: 2 additions & 2 deletions src/secrets/CommandRemove.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import * as binOptions from '../utils/options';
import * as binParsers from '../utils/parsers';
import * as binProcessors from '../utils/processors';

class CommandDelete extends CommandPolykey {
class CommandRemove extends CommandPolykey {
constructor(...args: ConstructorParameters<typeof CommandPolykey>) {
super(...args);
this.name('rm');
Expand Down Expand Up @@ -79,4 +79,4 @@ class CommandDelete extends CommandPolykey {
}
}

export default CommandDelete;
export default CommandRemove;
4 changes: 2 additions & 2 deletions src/secrets/CommandWrite.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import * as binParsers from '../utils/parsers';
import * as binUtils from '../utils';
import * as binOptions from '../utils/options';

class CommandStat extends CommandPolykey {
class CommandWrite extends CommandPolykey {
constructor(...args: ConstructorParameters<typeof CommandPolykey>) {
super(...args);
this.name('write');
Expand Down Expand Up @@ -89,4 +89,4 @@ class CommandStat extends CommandPolykey {
}
}

export default CommandStat;
export default CommandWrite;

0 comments on commit 0cad73d

Please sign in to comment.