@poe-platform/safe-bash 0.1.145 → 0.1.147
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/README.md +1 -1
- package/dist/safe-bash/browser.d.ts +4 -0
- package/dist/safe-bash/browser.d.ts.map +1 -1
- package/dist/safe-bash/browser.js +4046 -2910
- package/dist/safe-bash/browser.js.map +4 -4
- package/dist/safe-bash/commands/basic.d.ts +3 -1
- package/dist/safe-bash/commands/basic.d.ts.map +1 -1
- package/dist/safe-bash/commands/basic.js +143 -141
- package/dist/safe-bash/commands/basic.js.map +1 -1
- package/dist/safe-bash/commands/execution.d.ts +4 -1
- package/dist/safe-bash/commands/execution.d.ts.map +1 -1
- package/dist/safe-bash/commands/execution.js +134 -32
- package/dist/safe-bash/commands/execution.js.map +1 -1
- package/dist/safe-bash/commands/filesystem.d.ts.map +1 -1
- package/dist/safe-bash/commands/filesystem.js +161 -39
- package/dist/safe-bash/commands/filesystem.js.map +1 -1
- package/dist/safe-bash/commands/find.d.ts.map +1 -1
- package/dist/safe-bash/commands/find.js +83 -3
- package/dist/safe-bash/commands/find.js.map +1 -1
- package/dist/safe-bash/commands/index.d.ts +4 -0
- package/dist/safe-bash/commands/index.d.ts.map +1 -1
- package/dist/safe-bash/commands/index.js +1 -1
- package/dist/safe-bash/commands/index.js.map +1 -1
- package/dist/safe-bash/commands/regex-execution/ere/matcher.d.ts.map +1 -1
- package/dist/safe-bash/commands/regex-execution/ere/matcher.js +35 -15
- package/dist/safe-bash/commands/regex-execution/ere/matcher.js.map +1 -1
- package/dist/safe-bash/commands/search/file-types.d.ts +2 -0
- package/dist/safe-bash/commands/search/file-types.d.ts.map +1 -0
- package/dist/safe-bash/commands/search/file-types.js +229 -0
- package/dist/safe-bash/commands/search/file-types.js.map +1 -0
- package/dist/safe-bash/commands/search/options.d.ts +4 -0
- package/dist/safe-bash/commands/search/options.d.ts.map +1 -1
- package/dist/safe-bash/commands/search/options.js +14 -1
- package/dist/safe-bash/commands/search/options.js.map +1 -1
- package/dist/safe-bash/commands/search/walk.d.ts +2 -0
- package/dist/safe-bash/commands/search/walk.d.ts.map +1 -1
- package/dist/safe-bash/commands/search/walk.js +32 -0
- package/dist/safe-bash/commands/search/walk.js.map +1 -1
- package/dist/safe-bash/commands/streams.d.ts +1 -1
- package/dist/safe-bash/commands/streams.d.ts.map +1 -1
- package/dist/safe-bash/commands/streams.js +7 -1
- package/dist/safe-bash/commands/streams.js.map +1 -1
- package/dist/safe-bash/commands/structured/interpreter.d.ts +9 -1
- package/dist/safe-bash/commands/structured/interpreter.d.ts.map +1 -1
- package/dist/safe-bash/commands/structured/interpreter.js +78 -2
- package/dist/safe-bash/commands/structured/interpreter.js.map +1 -1
- package/dist/safe-bash/commands/structured/parser.d.ts +13 -0
- package/dist/safe-bash/commands/structured/parser.d.ts.map +1 -1
- package/dist/safe-bash/commands/structured/parser.js +49 -2
- package/dist/safe-bash/commands/structured/parser.js.map +1 -1
- package/dist/safe-bash/commands/table-text/join.d.ts.map +1 -1
- package/dist/safe-bash/commands/table-text/join.js +7 -2
- package/dist/safe-bash/commands/table-text/join.js.map +1 -1
- package/dist/safe-bash/commands/text-programs/sed.d.ts.map +1 -1
- package/dist/safe-bash/commands/text-programs/sed.js +98 -29
- package/dist/safe-bash/commands/text-programs/sed.js.map +1 -1
- package/dist/safe-bash/commands/text.d.ts.map +1 -1
- package/dist/safe-bash/commands/text.js +26 -16
- package/dist/safe-bash/commands/text.js.map +1 -1
- package/dist/safe-bash/plugins/index.d.ts +3 -0
- package/dist/safe-bash/plugins/index.d.ts.map +1 -1
- package/dist/safe-bash/plugins/index.js +1 -1
- package/dist/safe-bash/plugins/index.js.map +1 -1
- package/dist/safe-bash/shell/brace-expansion.d.ts +6 -0
- package/dist/safe-bash/shell/brace-expansion.d.ts.map +1 -0
- package/dist/safe-bash/shell/brace-expansion.js +335 -0
- package/dist/safe-bash/shell/brace-expansion.js.map +1 -0
- package/dist/safe-bash/shell/parser.d.ts +10 -1
- package/dist/safe-bash/shell/parser.d.ts.map +1 -1
- package/dist/safe-bash/shell/parser.js +92 -18
- package/dist/safe-bash/shell/parser.js.map +1 -1
- package/dist/safe-bash/shell/runtime.d.ts +4 -2
- package/dist/safe-bash/shell/runtime.d.ts.map +1 -1
- package/dist/safe-bash/shell/runtime.js +239 -38
- package/dist/safe-bash/shell/runtime.js.map +1 -1
- package/package.json +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@poe-platform/safe-bash",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.147",
|
|
4
4
|
"description": "Extensible virtual shell with pluggable filesystems and streaming commands",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -137,7 +137,7 @@
|
|
|
137
137
|
"access": "public"
|
|
138
138
|
},
|
|
139
139
|
"dependencies": {
|
|
140
|
-
"@poe-platform/safe-fs": "0.1.
|
|
140
|
+
"@poe-platform/safe-fs": "0.1.147",
|
|
141
141
|
"@types/node": "^25.2.2"
|
|
142
142
|
}
|
|
143
143
|
}
|