@ecmaos/coreutils 0.6.3 → 0.6.5
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/crypto.d.ts +4 -0
- package/dist/commands/crypto.d.ts.map +1 -0
- package/dist/commands/crypto.js +1322 -0
- package/dist/commands/crypto.js.map +1 -0
- package/dist/commands/theme.d.ts +4 -0
- package/dist/commands/theme.d.ts.map +1 -0
- package/dist/commands/theme.js +108 -0
- package/dist/commands/theme.js.map +1 -0
- package/dist/index.d.ts +37 -34
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +124 -117
- package/dist/index.js.map +1 -1
- package/package.json +3 -2
- package/src/commands/crypto.ts +1498 -0
- package/src/commands/theme.ts +118 -0
- package/src/index.ts +126 -119
package/.turbo/turbo-build.log
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @ecmaos/coreutils
|
|
2
2
|
|
|
3
|
+
## 0.6.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- fc0a871: feat: shell config (shell.toml); feat: shell themes, theme coreutil; fix: various UI issues
|
|
8
|
+
- Updated dependencies [fc0a871]
|
|
9
|
+
- @ecmaos/types@0.9.0
|
|
10
|
+
|
|
11
|
+
## 0.6.4
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- ce81fd9: add crypto coreutil; add web3 coreutil; add history bang expansion; fix multi-line command editing and navigation
|
|
16
|
+
- Updated dependencies [ce81fd9]
|
|
17
|
+
- @ecmaos/types@0.8.5
|
|
18
|
+
|
|
3
19
|
## 0.6.3
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { Kernel, Shell, Terminal } from '@ecmaos/types';
|
|
2
|
+
import { TerminalCommand } from '../shared/terminal-command.js';
|
|
3
|
+
export declare function createCommand(kernel: Kernel, shell: Shell, terminal: Terminal): TerminalCommand;
|
|
4
|
+
//# sourceMappingURL=crypto.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"crypto.d.ts","sourceRoot":"","sources":["../../src/commands/crypto.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,MAAM,EAAW,KAAK,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAA;AACrE,OAAO,EAAE,eAAe,EAAE,MAAM,+BAA+B,CAAA;AA85C/D,wBAAgB,aAAa,CAAC,MAAM,EAAE,MAAM,EAAE,KAAK,EAAE,KAAK,EAAE,QAAQ,EAAE,QAAQ,GAAG,eAAe,CAwD/F"}
|