This repository has been archived by the owner on Oct 26, 2024. It is now read-only.
-
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.
- **Reorganized VSCode Workspace, Improved Readme, Simplified Comments**: Some comments were made simple, The readme file readability was improved, and the VSCode workspace now contain all the new files
- Loading branch information
Showing
6 changed files
with
37 additions
and
22 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
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Supe Project Creator v1.7.5 | ||
# Supe Project Creator v1.7.6 | ||
|
||
A simple tool for creating simple web projects with batteries included. | ||
|
||
|
@@ -80,18 +80,26 @@ By doing so, you will ensure a smooth and successful execution of the scripts. | |
|
||
To start using Supe Project Creator, simply run the following command: | ||
|
||
### Create an AI Demo Project in the Current Working Directory: | ||
### Create a Clean Project in the Current Working Directory: | ||
|
||
```bash | ||
deno jsr:@supeprojects/[email protected] --demo -n cat-dog-detector -r deno | ||
cd cat-dog-detector | ||
deno jsr:@supeprojects/[email protected] -n my-supe-project --runtime deno | ||
``` | ||
|
||
### Create a Clean Project in the Current Working Directory: | ||
```bash | ||
deno jsr:@supeprojects/[email protected] -n my-supe-project --runtime deno | ||
cd my-supe-project | ||
``` | ||
|
||
### Create an AI Demo Project in the Current Working Directory: | ||
|
||
```bash | ||
deno jsr:@supeprojects/[email protected] --demo -n cat-dog-detector -r deno | ||
``` | ||
|
||
```bash | ||
cd cat-dog-detector | ||
``` | ||
|
||
> [!IMPORTANT] | ||
> Supe Project Creator does not require a separate installation step. Simply execute the command above to create a new project instantly. | ||
|
@@ -139,7 +147,7 @@ This behavior is, of course, configurable in `hotreload/config.ts`, allowing you | |
To view the available options for Supe Project Creator, run the following command: | ||
|
||
```bash | ||
deno jsr:@supeprojects/[email protected].5 --help | ||
deno jsr:@supeprojects/[email protected].6 --help | ||
``` | ||
|
||
- `-h`, `--help`: Displays help information. | ||
|
@@ -185,7 +193,7 @@ Utilizing SPC programmatically allows you to: | |
#### Programmatic Use Example | ||
|
||
```ts | ||
import SPC from 'jsr:@supeprojects/[email protected].5'; | ||
import SPC from 'jsr:@supeprojects/[email protected].6'; | ||
|
||
console.log("Testing SPC programmatically..."); | ||
|
||
|
@@ -217,7 +225,7 @@ With these commands, you can easily set up and utilize the Supe Project Creator | |
To add the `Supe Project Creator` package in Deno, you can import it directly without any installation if you use the `jsr:` prefix in your import: | ||
|
||
```ts | ||
import * as SPC from "jsr:@supeprojects/[email protected].5"; | ||
import * as SPC from "jsr:@supeprojects/[email protected].6"; | ||
|
||
// Example usage | ||
console.log("Testing SPC in Deno..."); | ||
|
@@ -227,7 +235,7 @@ SPC([]); // Shows the help menu | |
Alternatively, if you prefer to add it, use the following command: | ||
|
||
```bash | ||
deno add jsr:@supeprojects/[email protected].5 | ||
deno add jsr:@supeprojects/[email protected].6 | ||
``` | ||
|
||
Then, you can import it like this: | ||
|
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
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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@supeprojects/supe-project-creator", | ||
"version": "1.7.5", | ||
"version": "1.7.6", | ||
"exports": "./index.ts", | ||
"license": "MIT" | ||
} |
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