-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from adamjosefus/development
Update readme
- Loading branch information
Showing
1 changed file
with
23 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,17 +7,34 @@ You can found this project on [Deno.land registry](https://deno.land/x/esbuilder | |
# Installations | ||
1. [Install **Deno 🦕**](https://deno.land/#installation) | ||
2. [Check if your `.deno` folder is in PATH](https://deno.land/[email protected]/tools/script_installer#script-installer) | ||
3. Clone this repository | ||
4. **Install it!** | ||
3. **Install it!** | ||
|
||
## Install in **Visual Studio Code** | ||
- Open Repository in VS Code | ||
|
||
## Install from **Deno** *(Simpliest way)* | ||
Run the following command: | ||
```sh | ||
deno install \ | ||
--allow-read \ | ||
--allow-write \ | ||
--allow-env \ | ||
--allow-run \ | ||
--name esbuilder \ | ||
https://deno.land/x/esbuilder/builder.ts | ||
``` | ||
|
||
|
||
## Install by **VSCode** task runner *(No terminal way)* | ||
- Clone this repository | ||
- Open repo in VS Code | ||
- Open Command Pallete _(`Ctrl + Shift + P` / `⌘ + Shift + P`)_ | ||
- Select → `Tasks: Run Task` | ||
- Run → `Install Builder` | ||
- **Run → `Install ESBuilder`** | ||
|
||
|
||
## Install in **Terminal** from Repository | ||
- Clone this repository | ||
- Run the following command: | ||
|
||
## Install in **Terminal** | ||
```sh | ||
deno install \ | ||
--allow-read \ | ||
|