npm

Crates.ionpm
lib.rsnpm
version0.1.7
created_at2024-06-05 13:39:50.314799+00
updated_at2024-10-18 13:46:37.593888+00
descriptionnpm
homepagehttps://github.com/i18n-site/rust/tree/main/npm
repositoryhttps://github.com/i18n-site/rust.git
max_upload_size
id1262750
size13,197
i18n.site (i18nsite)

documentation

README

npm

publish dir to npm

use std::path::PathBuf;

use aok::{Result, OK};
use static_init::constructor;
use tracing::info;

#[constructor(0)]
extern "C" fn init() {
  loginit::init()
}

#[tokio::test]
async fn test() -> Result<()> {
  let token = npm::token();
  if token.is_empty() {
    info!("npm token is empty");
  } else {
    let dir: PathBuf = env!("CARGO_MANIFEST_DIR").into();
    let src = dir.join("tests").join("pkg");
    let package_json = src.join("package.json");
    info!("begin publish");
    xerr::log!(npm::publish(&token, src, &package_json).await);
  }
  info!("done");
  OK
}

About

This project is an open-source component of i18n.site ⋅ Internationalization Solution.

关于

本项目为 i18n.site ⋅ 国际化解决方案 的开源组件。

Commit count: 68

cargo fmt