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.
- **OS File Name Error Fixed**: When creating the workspace file the name can not contain slashes, it was replaced with a plus
- Loading branch information
Showing
5 changed files
with
25 additions
and
16 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.8.2 | ||
# Supe Project Creator v1.8.3 | ||
|
||
A simple tool for creating simple web projects with batteries included. | ||
|
||
|
@@ -70,7 +70,7 @@ To start using Supe Project Creator, simply run the following command: | |
### Create a Clean Project in the Current Working Directory: | ||
|
||
```bash | ||
deno jsr:@supeprojects/[email protected].2 -n @example/my-supe-project --runtime deno | ||
deno jsr:@supeprojects/[email protected].3 -n @example/my-supe-project --runtime deno | ||
``` | ||
|
||
```bash | ||
|
@@ -80,7 +80,7 @@ cd my-supe-project | |
### Create an AI Demo Project in the Current Working Directory: | ||
|
||
```bash | ||
deno jsr:@supeprojects/[email protected].2 --demo -n @example/cat-dog-detector -r deno | ||
deno jsr:@supeprojects/[email protected].3 --demo -n @example/cat-dog-detector -r deno | ||
``` | ||
|
||
```bash | ||
|
@@ -134,7 +134,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].2 --help | ||
deno jsr:@supeprojects/[email protected].3 --help | ||
``` | ||
|
||
- `-h`, `--help`: Displays help information. | ||
|
@@ -180,7 +180,7 @@ Utilizing SPC programmatically allows you to: | |
#### Programmatic Use Example | ||
|
||
```ts | ||
import SPC from 'jsr:@supeprojects/[email protected].2'; | ||
import SPC from 'jsr:@supeprojects/[email protected].3'; | ||
|
||
console.log("Testing SPC programmatically..."); | ||
|
||
|
@@ -212,7 +212,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].2"; | ||
import * as SPC from "jsr:@supeprojects/[email protected].3"; | ||
|
||
// Example usage | ||
console.log("Testing SPC in Deno..."); | ||
|
@@ -222,7 +222,7 @@ SPC([]); // Shows the help menu | |
Alternatively, if you prefer to add it, use the following command: | ||
|
||
```bash | ||
deno add jsr:@supeprojects/[email protected].2 | ||
deno add jsr:@supeprojects/[email protected].3 | ||
``` | ||
|
||
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.8.2", | ||
"version": "1.8.3", | ||
"exports": "./index.ts", | ||
"license": "MIT" | ||
} |