-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: use edgee-component toml to build (#5)
* feat: use edgee-component toml to build * feat: update wit version * feat(): harmonize component output path * feat(): update toml for new format * simplify build commands * remove Makefile, add edgee CLI build to README --------- Co-authored-by: Alex Casalboni <alexsaxmib@gmail.com>
- Loading branch information
1 parent
685d82a
commit b0f6b82
Showing
4 changed files
with
18 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
manifest_version = 1 | ||
|
||
[package] | ||
name = "example-js-component" | ||
version = "1.0.0" | ||
category = "data-collection" | ||
subcategory = "analytics" | ||
description = "Example Javascript component for data collection" | ||
documentation = "https://github.com/edgee-cloud/example-js-component" | ||
repository = "https://github.com/edgee-cloud/example-js-component" | ||
wit-world-version = "0.4.0" | ||
|
||
[package.build] | ||
command = "npm install && npm run generate && npm run build" | ||
output_path = "./example-js-component.wasm" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters