Initial inclusion of deno. Resolves T9578
Details
- Reviewers
DataDrake JoshStrobl - Group Reviewers
Triage Team - Maniphest Tasks
- T9578: Deno
- Commits
- R5205:d7b7b7235acd: Initial inclusion of deno
After install run the hello world script:
deno run https://deno.land/std/examples/welcome.ts
Diff Detail
- Branch
- master
- Lint
No Lint Coverage - Unit
No Test Coverage
Event Timeline
Needs a MAINTAINERS.md a la https://dev.getsol.us/source/mesalib/browse/master/MAINTAINERS.md
Your formatting is off as well. Be sure you are generating this package.yml with our scripting: https://getsol.us/articles/packaging/packaging-practices/en/#generating-a-packageyml
| package.yml | ||
|---|---|---|
| 8 | Doesn't need to be a list. Can just be license : MIT | |
| 11 | Description is unnecessarily verbose. Can just be "Deno is a simple, modern and secure runtime for JavaScript and TypeScript that uses V8 and is built in Rust." | |
| 24 | This is part of system.base. Not required. | |
| 25 | Should be above builddeps at the very least | |
Thanks for the review, fixed all the comments.
VSCode format on save was messing up the formatting.
Yea, been there before :D I end up using a less fancy editor like gedit for it.
LGTM now, thanks for the patch!