@ionyx-apps/cli 0.3.2 → 0.3.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (25) hide show
  1. package/bin/ionyx.exe +0 -0
  2. package/ionyx-cli/Cargo.toml +1 -1
  3. package/ionyx-cli/src/templates/basic/frontend/dist/index.html +1 -0
  4. package/ionyx-cli/src/templates/basic/src-ionyx/Cargo.toml +2 -1
  5. package/ionyx-cli/src/templates/basic/src-ionyx/build.rs +11 -0
  6. package/ionyx-cli/src/templates/frontend/dist/index.html +1 -0
  7. package/ionyx-cli/src/templates/leptos/Cargo.toml +1 -1
  8. package/ionyx-cli/src/templates/leptos/frontend/dist/index.html +1 -0
  9. package/ionyx-cli/src/templates/leptos/src-ionyx/Cargo.toml +2 -1
  10. package/ionyx-cli/src/templates/leptos/src-ionyx/build.rs +11 -0
  11. package/ionyx-cli/src/templates/react/frontend/dist/index.html +1 -0
  12. package/ionyx-cli/src/templates/react/src-ionyx/Cargo.toml +2 -1
  13. package/ionyx-cli/src/templates/react/src-ionyx/build.rs +11 -0
  14. package/ionyx-cli/src/templates/src-ionyx/Cargo.toml +2 -1
  15. package/ionyx-cli/src/templates/src-ionyx/build.rs +11 -0
  16. package/ionyx-cli/src/templates/svelte/frontend/dist/index.html +1 -0
  17. package/ionyx-cli/src/templates/svelte/src-ionyx/Cargo.toml +2 -1
  18. package/ionyx-cli/src/templates/svelte/src-ionyx/build.rs +11 -0
  19. package/ionyx-cli/src/templates/vanilla/frontend/dist/index.html +1 -0
  20. package/ionyx-cli/src/templates/vanilla/src-ionyx/Cargo.toml +2 -1
  21. package/ionyx-cli/src/templates/vanilla/src-ionyx/build.rs +11 -0
  22. package/ionyx-cli/src/templates/vue/frontend/dist/index.html +1 -0
  23. package/ionyx-cli/src/templates/vue/src-ionyx/Cargo.toml +2 -1
  24. package/ionyx-cli/src/templates/vue/src-ionyx/build.rs +11 -0
  25. package/package.json +1 -1
package/bin/ionyx.exe CHANGED
Binary file
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "ionyx-cli"
3
- version = "0.3.2"
3
+ version = "0.3.3"
4
4
  edition = "2021"
5
5
  description = "Ionyx Framework CLI Tool"
6
6
  authors = ["Ionyx Team"]
@@ -0,0 +1 @@
1
+ <html><body><h1>Placeholder</h1></body></html>
@@ -1,6 +1,7 @@
1
1
  [package]
2
+ build = "build.rs"
2
3
  name = "my-ionyx-app"
3
- version = "0.3.2"
4
+ version = "0.3.3"
4
5
  edition = "2021"
5
6
 
6
7
  [workspace]
@@ -0,0 +1,11 @@
1
+ use std::fs;
2
+ use std::path::Path;
3
+
4
+ fn main() {
5
+ let dist_path = Path::new("../frontend/dist");
6
+ if !dist_path.exists() {
7
+ fs::create_dir_all(dist_path).unwrap();
8
+ fs::write(dist_path.join("index.html"), "<html><body><h1>Placeholder</h1></body></html>").unwrap();
9
+ }
10
+ println!("cargo:rerun-if-changed=../frontend/dist");
11
+ }
@@ -0,0 +1 @@
1
+ <html><body><h1>Placeholder</h1></body></html>
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "my-ionyx-app"
3
- version = "0.3.2"
3
+ version = "0.3.3"
4
4
  edition = "2021"
5
5
 
6
6
  [lib]
@@ -0,0 +1 @@
1
+ <html><body><h1>Placeholder</h1></body></html>
@@ -1,6 +1,7 @@
1
1
  [package]
2
+ build = "build.rs"
2
3
  name = "my-ionyx-app"
3
- version = "0.3.2"
4
+ version = "0.3.3"
4
5
  edition = "2021"
5
6
 
6
7
  [workspace]
@@ -0,0 +1,11 @@
1
+ use std::fs;
2
+ use std::path::Path;
3
+
4
+ fn main() {
5
+ let dist_path = Path::new("../frontend/dist");
6
+ if !dist_path.exists() {
7
+ fs::create_dir_all(dist_path).unwrap();
8
+ fs::write(dist_path.join("index.html"), "<html><body><h1>Placeholder</h1></body></html>").unwrap();
9
+ }
10
+ println!("cargo:rerun-if-changed=../frontend/dist");
11
+ }
@@ -0,0 +1 @@
1
+ <html><body><h1>Placeholder</h1></body></html>
@@ -1,6 +1,7 @@
1
1
  [package]
2
+ build = "build.rs"
2
3
  name = "my-ionyx-app"
3
- version = "0.3.2"
4
+ version = "0.3.3"
4
5
  edition = "2021"
5
6
 
6
7
  [workspace]
@@ -0,0 +1,11 @@
1
+ use std::fs;
2
+ use std::path::Path;
3
+
4
+ fn main() {
5
+ let dist_path = Path::new("../frontend/dist");
6
+ if !dist_path.exists() {
7
+ fs::create_dir_all(dist_path).unwrap();
8
+ fs::write(dist_path.join("index.html"), "<html><body><h1>Placeholder</h1></body></html>").unwrap();
9
+ }
10
+ println!("cargo:rerun-if-changed=../frontend/dist");
11
+ }
@@ -1,6 +1,7 @@
1
1
  [package]
2
+ build = "build.rs"
2
3
  name = "my-ionyx-app"
3
- version = "0.3.2"
4
+ version = "0.3.3"
4
5
  edition = "2021"
5
6
 
6
7
  [[bin]]
@@ -0,0 +1,11 @@
1
+ use std::fs;
2
+ use std::path::Path;
3
+
4
+ fn main() {
5
+ let dist_path = Path::new("../frontend/dist");
6
+ if !dist_path.exists() {
7
+ fs::create_dir_all(dist_path).unwrap();
8
+ fs::write(dist_path.join("index.html"), "<html><body><h1>Placeholder</h1></body></html>").unwrap();
9
+ }
10
+ println!("cargo:rerun-if-changed=../frontend/dist");
11
+ }
@@ -0,0 +1 @@
1
+ <html><body><h1>Placeholder</h1></body></html>
@@ -1,6 +1,7 @@
1
1
  [package]
2
+ build = "build.rs"
2
3
  name = "my-ionyx-app"
3
- version = "0.3.2"
4
+ version = "0.3.3"
4
5
  edition = "2021"
5
6
 
6
7
  [workspace]
@@ -0,0 +1,11 @@
1
+ use std::fs;
2
+ use std::path::Path;
3
+
4
+ fn main() {
5
+ let dist_path = Path::new("../frontend/dist");
6
+ if !dist_path.exists() {
7
+ fs::create_dir_all(dist_path).unwrap();
8
+ fs::write(dist_path.join("index.html"), "<html><body><h1>Placeholder</h1></body></html>").unwrap();
9
+ }
10
+ println!("cargo:rerun-if-changed=../frontend/dist");
11
+ }
@@ -0,0 +1 @@
1
+ <html><body><h1>Placeholder</h1></body></html>
@@ -1,6 +1,7 @@
1
1
  [package]
2
+ build = "build.rs"
2
3
  name = "my-ionyx-app"
3
- version = "0.3.2"
4
+ version = "0.3.3"
4
5
  edition = "2021"
5
6
 
6
7
  [workspace]
@@ -0,0 +1,11 @@
1
+ use std::fs;
2
+ use std::path::Path;
3
+
4
+ fn main() {
5
+ let dist_path = Path::new("../frontend/dist");
6
+ if !dist_path.exists() {
7
+ fs::create_dir_all(dist_path).unwrap();
8
+ fs::write(dist_path.join("index.html"), "<html><body><h1>Placeholder</h1></body></html>").unwrap();
9
+ }
10
+ println!("cargo:rerun-if-changed=../frontend/dist");
11
+ }
@@ -0,0 +1 @@
1
+ <html><body><h1>Placeholder</h1></body></html>
@@ -1,6 +1,7 @@
1
1
  [package]
2
+ build = "build.rs"
2
3
  name = "my-ionyx-app"
3
- version = "0.3.2"
4
+ version = "0.3.3"
4
5
  edition = "2021"
5
6
 
6
7
  [workspace]
@@ -0,0 +1,11 @@
1
+ use std::fs;
2
+ use std::path::Path;
3
+
4
+ fn main() {
5
+ let dist_path = Path::new("../frontend/dist");
6
+ if !dist_path.exists() {
7
+ fs::create_dir_all(dist_path).unwrap();
8
+ fs::write(dist_path.join("index.html"), "<html><body><h1>Placeholder</h1></body></html>").unwrap();
9
+ }
10
+ println!("cargo:rerun-if-changed=../frontend/dist");
11
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ionyx-apps/cli",
3
- "version": "0.3.2",
3
+ "version": "0.3.3",
4
4
  "description": "Ionyx Framework CLI - High-performance desktop apps with Rust and WebGPU",
5
5
  "main": "index.js",
6
6
  "type": "commonjs",