@digitak/esrun
Advanced tools
Comparing version 1.0.5 to 1.0.6
{ | ||
"name": "@digitak/esrun", | ||
"version": "1.0.5", | ||
"version": "1.0.6", | ||
"description": "Execute directly your Typescript/Javascript(with ES modules) files using Esbuild", | ||
@@ -8,4 +8,3 @@ "files": ["src/**/*"], | ||
"bin": { | ||
"esrun": "src/bin.js", | ||
"esr": "src/bin.js" | ||
"esrun": "src/bin.js" | ||
}, | ||
@@ -12,0 +11,0 @@ "scripts": { |
@@ -16,12 +16,10 @@ # esrun | ||
```py | ||
``` | ||
esrun foo.ts | ||
# or use shortened form : | ||
esr foo.ts | ||
``` | ||
You can pass arguments to the process : | ||
You can pass arguments like any process : | ||
``` | ||
esrun foo.ts --option=bar | ||
esrun foo.ts --option=bar --verbose -S | ||
``` | ||
@@ -49,3 +47,3 @@ | ||
esrun(filePath: string, arguments: string[]): unknown | ||
esrun(filePath: string, argv: string[]): unknown | ||
``` |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
5788
47