Skip to content

Commit d380a22

Browse files
committed
shell.exec now returns promise/callback values. Closes #9
1 parent dc27eab commit d380a22

13 files changed

Lines changed: 1227 additions & 20 deletions

File tree

dist/shell-debug/LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2020 Author.io
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

dist/shell-debug/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# shell 1.8.18
2+
3+
Please see [https://github.com/author/shell](https://github.com/author/shell).
4+
5+
Generated on Tue Jan 04 2022 23:59:11 GMT+0000 (Coordinated Universal Time).

dist/shell-debug/index.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/shell-debug/package.json

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
{
2+
"name": "@author.io/shell-debug",
3+
"version": "1.8.18",
4+
"description": "A micro-framework for creating CLI-like experiences. This supports Node.js and browsers. (Debug Mappings)",
5+
"module": "./index.js",
6+
"exports": {
7+
"import": "./index.js",
8+
"default": "./index.js"
9+
},
10+
"browser": "./index.js",
11+
"keywords": [
12+
"shell",
13+
"debug",
14+
"sourcemap"
15+
],
16+
"repository": {
17+
"type": "git",
18+
"url": "https://github.com/author/shell"
19+
},
20+
"author": {
21+
"name": "Corey Butler",
22+
"url": "http://coreybutler.com"
23+
},
24+
"license": "MIT",
25+
"type": "module",
26+
"files": [
27+
"*.js"
28+
],
29+
"engines": {
30+
"node": ">=13.5.0"
31+
},
32+
"standard": {
33+
"parser": "babel-eslint",
34+
"ignore": [
35+
"_*",
36+
"_**/*",
37+
".**/*",
38+
"node_modules",
39+
"karma.conf.js",
40+
"karma.conf.cjs",
41+
"build.js"
42+
],
43+
"globals": [
44+
"window",
45+
"global",
46+
"globalThis"
47+
]
48+
},
49+
"dependencies": {
50+
"source-map-support": "^0.5.16"
51+
}
52+
}

dist/shell/LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2020 Author.io
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

0 commit comments

Comments
 (0)