2024-01-01 14:58:21 -05:00
|
|
|
|
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
2022-08-19 19:37:05 -04:00
|
|
|
|
|
|
|
|
|
use crate::args::InitFlags;
|
2022-12-08 00:34:28 -05:00
|
|
|
|
use crate::colors;
|
2022-08-29 14:19:54 -04:00
|
|
|
|
use deno_core::anyhow::Context;
|
|
|
|
|
use deno_core::error::AnyError;
|
2024-07-09 21:13:34 -04:00
|
|
|
|
use deno_core::serde_json::json;
|
2022-09-02 11:59:36 -04:00
|
|
|
|
use log::info;
|
2022-08-19 19:37:05 -04:00
|
|
|
|
use std::io::Write;
|
|
|
|
|
use std::path::Path;
|
|
|
|
|
|
2024-03-11 23:48:00 -04:00
|
|
|
|
pub fn init_project(init_flags: InitFlags) -> Result<(), AnyError> {
|
2022-08-19 19:37:05 -04:00
|
|
|
|
let cwd =
|
|
|
|
|
std::env::current_dir().context("Can't read current working directory.")?;
|
|
|
|
|
let dir = if let Some(dir) = &init_flags.dir {
|
|
|
|
|
let dir = cwd.join(dir);
|
|
|
|
|
std::fs::create_dir_all(&dir)?;
|
|
|
|
|
dir
|
|
|
|
|
} else {
|
|
|
|
|
cwd
|
|
|
|
|
};
|
|
|
|
|
|
2024-07-09 21:13:34 -04:00
|
|
|
|
if init_flags.lib {
|
|
|
|
|
// Extract the directory name to use as the project name
|
|
|
|
|
let project_name = dir
|
|
|
|
|
.file_name()
|
|
|
|
|
.unwrap_or_else(|| dir.as_os_str())
|
|
|
|
|
.to_str()
|
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
|
|
create_file(
|
|
|
|
|
&dir,
|
|
|
|
|
"mod.ts",
|
|
|
|
|
r#"export function add(a: number, b: number): number {
|
|
|
|
|
return a + b;
|
|
|
|
|
}
|
|
|
|
|
"#,
|
|
|
|
|
)?;
|
|
|
|
|
create_file(
|
|
|
|
|
&dir,
|
|
|
|
|
"mod_test.ts",
|
2024-07-14 13:22:43 -04:00
|
|
|
|
r#"import { assertEquals } from "@std/assert";
|
2024-07-09 21:13:34 -04:00
|
|
|
|
import { add } from "./mod.ts";
|
|
|
|
|
|
|
|
|
|
Deno.test(function addTest() {
|
|
|
|
|
assertEquals(add(2, 3), 5);
|
|
|
|
|
});
|
|
|
|
|
"#,
|
|
|
|
|
)?;
|
|
|
|
|
|
|
|
|
|
create_json_file(
|
|
|
|
|
&dir,
|
|
|
|
|
"deno.json",
|
|
|
|
|
&json!({
|
|
|
|
|
"name": project_name,
|
2024-07-14 13:22:43 -04:00
|
|
|
|
"version": "0.1.0",
|
2024-07-09 21:13:34 -04:00
|
|
|
|
"tasks": {
|
|
|
|
|
"dev": "deno test --watch mod.ts"
|
2024-07-14 13:22:43 -04:00
|
|
|
|
},
|
|
|
|
|
"imports": {
|
|
|
|
|
"@std/assert": "jsr:@std/assert@1"
|
|
|
|
|
},
|
|
|
|
|
"exports": "./mod.ts"
|
2024-07-09 21:13:34 -04:00
|
|
|
|
}),
|
|
|
|
|
)?;
|
|
|
|
|
} else {
|
|
|
|
|
create_file(
|
|
|
|
|
&dir,
|
|
|
|
|
"main.ts",
|
|
|
|
|
r#"export function add(a: number, b: number): number {
|
|
|
|
|
return a + b;
|
|
|
|
|
}
|
|
|
|
|
|
2024-07-12 15:04:27 -04:00
|
|
|
|
// Learn more at https://docs.deno.com/runtime/manual/examples/module_metadata#concepts
|
2024-07-09 21:13:34 -04:00
|
|
|
|
if (import.meta.main) {
|
|
|
|
|
console.log("Add 2 + 3 =", add(2, 3));
|
|
|
|
|
}
|
|
|
|
|
"#,
|
|
|
|
|
)?;
|
|
|
|
|
create_file(
|
|
|
|
|
&dir,
|
|
|
|
|
"main_test.ts",
|
2024-07-14 13:22:43 -04:00
|
|
|
|
r#"import { assertEquals } from "@std/assert";
|
2024-07-09 21:13:34 -04:00
|
|
|
|
import { add } from "./main.ts";
|
2022-08-19 19:37:05 -04:00
|
|
|
|
|
2024-07-09 21:13:34 -04:00
|
|
|
|
Deno.test(function addTest() {
|
|
|
|
|
assertEquals(add(2, 3), 5);
|
|
|
|
|
});
|
|
|
|
|
"#,
|
|
|
|
|
)?;
|
|
|
|
|
|
|
|
|
|
create_json_file(
|
|
|
|
|
&dir,
|
|
|
|
|
"deno.json",
|
|
|
|
|
&json!({
|
|
|
|
|
"tasks": {
|
|
|
|
|
"dev": "deno run --watch main.ts"
|
2024-07-14 13:22:43 -04:00
|
|
|
|
},
|
|
|
|
|
"imports": {
|
|
|
|
|
"@std/assert": "jsr:@std/assert@1"
|
2024-07-09 21:13:34 -04:00
|
|
|
|
}
|
|
|
|
|
}),
|
|
|
|
|
)?;
|
|
|
|
|
}
|
2022-12-08 00:34:28 -05:00
|
|
|
|
|
|
|
|
|
info!("✅ {}", colors::green("Project initialized"));
|
|
|
|
|
info!("");
|
|
|
|
|
info!("{}", colors::gray("Run these commands to get started"));
|
|
|
|
|
info!("");
|
2022-08-19 19:37:05 -04:00
|
|
|
|
if let Some(dir) = init_flags.dir {
|
2022-09-02 11:59:36 -04:00
|
|
|
|
info!(" cd {}", dir);
|
2022-12-08 00:34:28 -05:00
|
|
|
|
info!("");
|
2022-08-19 19:37:05 -04:00
|
|
|
|
}
|
2024-07-09 21:13:34 -04:00
|
|
|
|
if init_flags.lib {
|
|
|
|
|
info!(" {}", colors::gray("# Run the tests"));
|
|
|
|
|
info!(" deno test");
|
|
|
|
|
info!("");
|
|
|
|
|
info!(
|
|
|
|
|
" {}",
|
|
|
|
|
colors::gray("# Run the tests and watch for file changes")
|
|
|
|
|
);
|
|
|
|
|
info!(" deno task dev");
|
|
|
|
|
info!("");
|
|
|
|
|
info!(" {}", colors::gray("# Publish to JSR (dry run)"));
|
|
|
|
|
info!(" deno publish --dry-run");
|
|
|
|
|
} else {
|
|
|
|
|
info!(" {}", colors::gray("# Run the program"));
|
|
|
|
|
info!(" deno run main.ts");
|
|
|
|
|
info!("");
|
|
|
|
|
info!(
|
|
|
|
|
" {}",
|
|
|
|
|
colors::gray("# Run the program and watch for file changes")
|
|
|
|
|
);
|
|
|
|
|
info!(" deno task dev");
|
|
|
|
|
info!("");
|
|
|
|
|
info!(" {}", colors::gray("# Run the tests"));
|
|
|
|
|
info!(" deno test");
|
|
|
|
|
}
|
2022-08-19 19:37:05 -04:00
|
|
|
|
Ok(())
|
|
|
|
|
}
|
2024-07-09 21:13:34 -04:00
|
|
|
|
|
|
|
|
|
fn create_json_file(
|
|
|
|
|
dir: &Path,
|
|
|
|
|
filename: &str,
|
|
|
|
|
value: &deno_core::serde_json::Value,
|
|
|
|
|
) -> Result<(), AnyError> {
|
|
|
|
|
let mut text = deno_core::serde_json::to_string_pretty(value)?;
|
|
|
|
|
text.push('\n');
|
|
|
|
|
create_file(dir, filename, &text)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn create_file(
|
|
|
|
|
dir: &Path,
|
|
|
|
|
filename: &str,
|
|
|
|
|
content: &str,
|
|
|
|
|
) -> Result<(), AnyError> {
|
|
|
|
|
let path = dir.join(filename);
|
|
|
|
|
if path.exists() {
|
|
|
|
|
info!(
|
|
|
|
|
"ℹ️ {}",
|
|
|
|
|
colors::gray(format!("Skipped creating {filename} as it already exists"))
|
|
|
|
|
);
|
|
|
|
|
Ok(())
|
|
|
|
|
} else {
|
|
|
|
|
let mut file = std::fs::OpenOptions::new()
|
|
|
|
|
.write(true)
|
|
|
|
|
.create_new(true)
|
|
|
|
|
.open(path)
|
|
|
|
|
.with_context(|| format!("Failed to create {filename} file"))?;
|
|
|
|
|
file.write_all(content.as_bytes())?;
|
|
|
|
|
Ok(())
|
|
|
|
|
}
|
|
|
|
|
}
|