Skip to content

Commit 6863c58

Browse files
committed
Remove some old data.
1 parent f060988 commit 6863c58

File tree

6 files changed

+7
-45
lines changed

6 files changed

+7
-45
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
target
2-
static
2+
dist

Cargo.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
[package]
22
name = "trunk"
33
version = "0.1.0"
4+
edition = "2018"
45
description = "Build, bundle & ship your Rust WASM application to the web."
56
license = "MIT/Apache-2.0"
67
authors = ["Anthony Dodd <dodd.anthonyjosiah@gmail.com>"]
7-
edition = "2018"
88
repository = "https://github.com/thedodd/trunk"
9+
readme = "README.md"
10+
categories = ["command-line-utilities", "wasm", "web-programming"]
11+
keywords = ["wasm", "bundler", "web", "build-tool", "compiler"]
912

1013
[dependencies]
1114
anyhow = "1.0.32"

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,7 @@ Inspiration primarily from [ParcelJS](https://parceljs.org).
2020
## getting started
2121
```bash
2222
# Install trunk.
23-
cargo install https://github.com/thedodd/trunk
24-
# After our first release: `cargo install trunk`
23+
cargo install trunk
2524

2625
# Install wasm-bindgen-cli.
2726
cargo install wasm-bindgen-cli
@@ -33,7 +32,7 @@ Get setup with your favorite wasm-bindgen based framework. [Yew](https://github.
3332
```rust
3433
// The name of this function doesn't matter, but the attribute does.
3534
#[wasm_bindgen(start)]
36-
pub fn run() {
35+
pub fn main() {
3736
// ... your app setup code here ...
3837
}
3938
```

data/_demo.scss

Lines changed: 0 additions & 7 deletions
This file was deleted.

data/index.html

Lines changed: 0 additions & 16 deletions
This file was deleted.

data/index.scss

Lines changed: 0 additions & 17 deletions
This file was deleted.

0 commit comments

Comments
 (0)