Skip to content

Commit

Permalink
fix: build link
Browse files Browse the repository at this point in the history
  • Loading branch information
lencx committed May 24, 2022
1 parent 719d28f commit b939028
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.7.10

- fix: build link

## 0.7.7

- fix: npm binary install
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rsw"
version = "0.7.9"
version = "0.7.10"
description = "wasm-pack based build tool"
edition = "2021"
authors = ["lencx <[email protected]>"]
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ rsw clean
- [[rsw demo] learn-wasm](https://github.com/lencx/learn-wasm) - 🎲 Learning WebAssembly
- [vite-plugin-rsw](https://github.com/lencx/vite-plugin-rsw) - 🦀 wasm-pack plugin for Vite
- [create-mpl](https://github.com/lencx/create-mpl) - ⚡️ Create a project in seconds!
- [Oh My Box](https://github.com/lencx/OhMyBox) - 🔮 Development toolbox, and more...

## Logger

Expand Down
4 changes: 2 additions & 2 deletions npm/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@rsw/cli",
"version": "0.7.10",
"rsw_version": "0.7.9",
"version": "0.7.11",
"rsw_version": "0.7.10",
"description": "🦞 wasm-pack based build tool",
"main": "binary.js",
"author": "lencx <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion src/core/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ impl Cli {
}
}
pub fn rsw_build() {
Cli::wp_build(Arc::new(Cli::parse_toml()), "build", false);
Cli::wp_build(Arc::new(Cli::parse_toml()), "build", true);
}
pub fn rsw_watch(
callback: Option<Arc<dyn Fn(&CrateConfig, std::path::PathBuf) + Send + Sync + 'static>>,
Expand Down

0 comments on commit b939028

Please sign in to comment.