Skip to content

Commit 19fa62e

Browse files
Zeta 6462 export morph command - ship it (#8)
* ZETA-6460: Update package json name. * ZETA-6460: Add codemorph core. * ZETA-6460: Benchmark progress towards completing json logic. * ZETA-6460: Wire up inital npm install update logic. * ZETA-6462: Expose morph command. * ZETA-6462: fix interfae. * ZETA-6462: Fix one more import path.
1 parent 03d3908 commit 19fa62e

File tree

4 files changed

+3
-14
lines changed

4 files changed

+3
-14
lines changed

src/commandMorph/command-morph.interface.ts

Lines changed: 0 additions & 3 deletions
This file was deleted.

src/commandMorph/commandMorph.ts

Lines changed: 0 additions & 9 deletions
This file was deleted.

src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
// export { Blah as default } from './lib'
2+
export { morphCommand } from "./command-morph/command-morph";

src/utils/command-search/command-search.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { NpmCommandMorph } from "src/npm/interfaces/npm-command-morph.interface";
2-
import { CommandMorph } from "../command-morph/command-morph.interface";
1+
import { NpmCommandMorph } from "../../npm/interfaces/npm-command-morph.interface";
2+
import { CommandMorph } from "../../command-morph/command-morph.interface";
33

44
export function getFirstWordOfCommand(commandText: string): CommandMorph {
55
const words = commandText.trim().split(/\s+/);

0 commit comments

Comments
 (0)