Skip to content

Commit

Permalink
Fix/ticket79 (#85)
Browse files Browse the repository at this point in the history
* Add testnet connection

* Fix building issue

* Add a unit test

* Correct paths for WIndows

* Update version

---------

Co-authored-by: Elliot Braem <[email protected]>
  • Loading branch information
ittechhunter and elliotBraem authored Apr 22, 2024
1 parent e38c56f commit a8b11f5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/dev.ts
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ async function generateDevJson(src: string, config: BaseConfig): Promise<DevJson
}

const widgetPath = path.relative(path.join(src, "src", "widget"), file).replace(ext, "");
const widgetKey = `${devAccount}/widget/${widgetPath.split("/").join(".")}`;
const widgetKey = `${devAccount}/widget/${widgetPath.split(path.sep).join(".")}`;

// add to devJson.components
devJson.components[widgetKey] = {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bos-workspace",
"version": "1.0.0-alpha.9",
"version": "1.0.0-alpha.10",
"description": "",
"bin": {
"bos-workspace": "./bin/bw.js",
Expand Down

0 comments on commit a8b11f5

Please sign in to comment.