Skip to content

Commit

Permalink
Merge pull request #37 from newfrgmnt/1.0.4
Browse files Browse the repository at this point in the history
1.0.4
  • Loading branch information
emilwidlund authored Sep 12, 2023
2 parents 1e0ddb8 + 8dbc998 commit 581d6cb
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion examples/react-example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"homepage": "https://github.com/emilwidlund/nodl#readme",
"dependencies": {
"@emotion/react": "^11.10.6",
"@nodl/core": "^1.0.3",
"@nodl/core": "^1.0.4",
"@nodl/react": "^1.0.3",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
Expand Down
2 changes: 1 addition & 1 deletion examples/three-js-example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"homepage": "https://github.com/emilwidlund/nodl#readme",
"dependencies": {
"@emotion/react": "^11.10.6",
"@nodl/core": "^1.0.3",
"@nodl/core": "^1.0.4",
"@nodl/react": "^1.0.3",
"@react-three/fiber": "^8.12.0",
"@types/react": "^18.0.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nodl/core",
"version": "1.0.3",
"version": "1.0.4",
"description": "Core implementation of the Nodl framework",
"main": "build/index.js",
"author": "Emil Widlund",
Expand Down
1 change: 1 addition & 0 deletions packages/core/src/Connection/Connection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ export class Connection<T> extends Subject<T> {
this.to.type.validator.parse(value);
this.to.next(value);
} catch (err) {
this.dispose();
throw new Error('Received a value with an incompatible type');
}
});
Expand Down
2 changes: 1 addition & 1 deletion packages/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
},
"homepage": "https://github.com/emilwidlund/nodl#readme",
"dependencies": {
"@nodl/core": "^1.0.3",
"@nodl/core": "^1.0.4",
"@types/lodash": "^4.14.191",
"@types/react": "^18.0.26",
"lodash": "^4.17.21",
Expand Down
2 changes: 1 addition & 1 deletion packages/website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"@docusaurus/preset-classic": "2.3.1",
"@emotion/react": "^11.10.6",
"@mdx-js/react": "^1.6.22",
"@nodl/core": "^1.0.3",
"@nodl/core": "^1.0.4",
"@nodl/react": "^1.0.3",
"clsx": "^1.2.1",
"color": "^4.2.3",
Expand Down

0 comments on commit 581d6cb

Please sign in to comment.