@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/.turbo/turbo-build.log +1 -1
- package/CHANGELOG.md +16 -0
- package/dist/commands/git.d.ts +4 -0
- package/dist/commands/git.d.ts.map +1 -0
- package/dist/commands/git.js +708 -0
- package/dist/commands/git.js.map +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +4 -1
- package/dist/index.js.map +1 -1
- package/package.json +3 -2
- package/src/commands/git.ts +843 -0
- package/src/index.ts +4 -1
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
|
|