Skip to content

Commit

Permalink
shell.exec now returns promise/callback values. Closes #9
Browse files Browse the repository at this point in the history
  • Loading branch information
coreybutler committed Feb 11, 2022
1 parent dc27eab commit d380a22
Show file tree
Hide file tree
Showing 13 changed files with 1,227 additions and 20 deletions.
21 changes: 21 additions & 0 deletions dist/shell-debug/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2020 Author.io

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
5 changes: 5 additions & 0 deletions dist/shell-debug/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# shell 1.8.18

Please see [https://github.com/author/shell](https://github.com/author/shell).

Generated on Tue Jan 04 2022 23:59:11 GMT+0000 (Coordinated Universal Time).
1 change: 1 addition & 0 deletions dist/shell-debug/index.js.map

Large diffs are not rendered by default.

52 changes: 52 additions & 0 deletions dist/shell-debug/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
{
"name": "@author.io/shell-debug",
"version": "1.8.18",
"description": "A micro-framework for creating CLI-like experiences. This supports Node.js and browsers. (Debug Mappings)",
"module": "./index.js",
"exports": {
"import": "./index.js",
"default": "./index.js"
},
"browser": "./index.js",
"keywords": [
"shell",
"debug",
"sourcemap"
],
"repository": {
"type": "git",
"url": "https://github.com/author/shell"
},
"author": {
"name": "Corey Butler",
"url": "http://coreybutler.com"
},
"license": "MIT",
"type": "module",
"files": [
"*.js"
],
"engines": {
"node": ">=13.5.0"
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"_*",
"_**/*",
".**/*",
"node_modules",
"karma.conf.js",
"karma.conf.cjs",
"build.js"
],
"globals": [
"window",
"global",
"globalThis"
]
},
"dependencies": {
"source-map-support": "^0.5.16"
}
}
21 changes: 21 additions & 0 deletions dist/shell/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2020 Author.io

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Loading

0 comments on commit d380a22

Please sign in to comment.