-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add component parser * remove unneeded crates * add no-op constructor * automate building and transpiling the component_parser inside common-sys/wasm-loader * ignore component parser * parse functions --------- Co-authored-by: John Williamson <johnjwilliamson@live.com>
- Loading branch information
1 parent
ae7f1a6
commit ddb604d
Showing
29 changed files
with
13,834 additions
and
1,663 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
6 changes: 3 additions & 3 deletions
6
services/user/CommonSys/common-lib/packages/wasm-loader/.gitignore
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
src/graph.d.ts | ||
src/graph.js | ||
src/graph.core.wasm | ||
component_parser/** | ||
src/component_parser.d.ts | ||
src/component_parser.js |
161 changes: 12 additions & 149 deletions
161
services/user/CommonSys/common-lib/packages/wasm-loader/Cargo.lock
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
3 changes: 1 addition & 2 deletions
3
services/user/CommonSys/common-lib/packages/wasm-loader/Cargo.toml
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 |
---|---|---|
@@ -1,6 +1,5 @@ | ||
[workspace] | ||
resolver = "2" | ||
members = [ | ||
"crates/graph", | ||
"crates/fastly-static-site", | ||
"crates/component-parser" | ||
] |
1 change: 1 addition & 0 deletions
1
services/user/CommonSys/common-lib/packages/wasm-loader/crates/component-parser/.gitignore
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 @@ | ||
/target |
Oops, something went wrong.