@ecmaos/coreutils 0.5.2 → 0.5.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/src/index.ts CHANGED
@@ -99,6 +99,7 @@ import { createCommand as createZip } from './commands/zip.js'
99
99
  import { createCommand as createUnzip } from './commands/unzip.js'
100
100
  import { createCommand as createVideo } from './commands/video.js'
101
101
  import { createCommand as createView } from './commands/view.js'
102
+ import { createCommand as createGit } from './commands/git.js'
102
103
 
103
104
  // Export individual command factories
104
105
  export { createCommand as createCat } from './commands/cat.js'
@@ -174,6 +175,7 @@ export { createCommand as createZip } from './commands/zip.js'
174
175
  export { createCommand as createUnzip } from './commands/unzip.js'
175
176
  export { createCommand as createVideo } from './commands/video.js'
176
177
  export { createCommand as createView } from './commands/view.js'
178
+ export { createCommand as createGit } from './commands/git.js'
177
179
 
178
180
  /**
179
181
  * Creates all coreutils commands.
@@ -272,7 +274,8 @@ export function createAllCommands(kernel: Kernel, shell: Shell, terminal: Termin
272
274
  zip: createZip(kernel, shell, terminal),
273
275
  unzip: createUnzip(kernel, shell, terminal),
274
276
  video: createVideo(kernel, shell, terminal),
275
- view: createView(kernel, shell, terminal)
277
+ view: createView(kernel, shell, terminal),
278
+ git: createGit(kernel, shell, terminal)
276
279
  }
277
280
  }
278
281