@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.
- package/bin/ionyx.exe +0 -0
- package/ionyx-cli/Cargo.toml +1 -1
- package/ionyx-cli/src/templates/basic/frontend/dist/index.html +1 -0
- package/ionyx-cli/src/templates/basic/src-ionyx/Cargo.toml +2 -1
- package/ionyx-cli/src/templates/basic/src-ionyx/build.rs +11 -0
- package/ionyx-cli/src/templates/frontend/dist/index.html +1 -0
- package/ionyx-cli/src/templates/leptos/Cargo.toml +1 -1
- package/ionyx-cli/src/templates/leptos/frontend/dist/index.html +1 -0
- package/ionyx-cli/src/templates/leptos/src-ionyx/Cargo.toml +2 -1
- package/ionyx-cli/src/templates/leptos/src-ionyx/build.rs +11 -0
- package/ionyx-cli/src/templates/react/frontend/dist/index.html +1 -0
- package/ionyx-cli/src/templates/react/src-ionyx/Cargo.toml +2 -1
- package/ionyx-cli/src/templates/react/src-ionyx/build.rs +11 -0
- package/ionyx-cli/src/templates/src-ionyx/Cargo.toml +2 -1
- package/ionyx-cli/src/templates/src-ionyx/build.rs +11 -0
- package/ionyx-cli/src/templates/svelte/frontend/dist/index.html +1 -0
- package/ionyx-cli/src/templates/svelte/src-ionyx/Cargo.toml +2 -1
- package/ionyx-cli/src/templates/svelte/src-ionyx/build.rs +11 -0
- package/ionyx-cli/src/templates/vanilla/frontend/dist/index.html +1 -0
- package/ionyx-cli/src/templates/vanilla/src-ionyx/Cargo.toml +2 -1
- package/ionyx-cli/src/templates/vanilla/src-ionyx/build.rs +11 -0
- package/ionyx-cli/src/templates/vue/frontend/dist/index.html +1 -0
- package/ionyx-cli/src/templates/vue/src-ionyx/Cargo.toml +2 -1
- package/ionyx-cli/src/templates/vue/src-ionyx/build.rs +11 -0
- package/package.json +1 -1
package/bin/ionyx.exe
CHANGED
|
Binary file
|
package/ionyx-cli/Cargo.toml
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<html><body><h1>Placeholder</h1></body></html>
|
|
@@ -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>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<html><body><h1>Placeholder</h1></body></html>
|
|
@@ -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>
|
|
@@ -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,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>
|
|
@@ -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>
|
|
@@ -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>
|
|
@@ -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
|
+
}
|