Skip to content

Commit

Permalink
Do not bundle the assets from wasm example in the crate (bevyengine#4895
Browse files Browse the repository at this point in the history
)

# Objective

- Fix bevyengine#4881 

## Solution

- Do not bundle the assets from wasm example in the crate; tested with `cargo package` to check the produced crate
  • Loading branch information
mockersf authored and james7132 committed Jun 7, 2022
1 parent 89b77fb commit ddadba5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.8.0-dev"
edition = "2021"
categories = ["game-engines", "graphics", "gui", "rendering"]
description = "A refreshingly simple data-driven game engine and app framework"
exclude = ["assets/**/*", "tools/**/*", ".github/**/*", "crates/**/*"]
exclude = ["assets/", "tools/", ".github/", "crates/", "examples/wasm/assets/"]
homepage = "https://bevyengine.org"
keywords = ["game", "engine", "gamedev", "graphics", "bevy"]
license = "MIT OR Apache-2.0"
Expand Down

0 comments on commit ddadba5

Please sign in to comment.