aboutsummaryrefslogtreecommitdiff
path: root/components
diff options
context:
space:
mode:
authorRuben Beltran del Rio <git@r.bdr.sh>2024-05-07 15:40:06 +0200
committerRuben Beltran del Rio <git@r.bdr.sh>2024-05-07 15:40:06 +0200
commitfcd68e9d780b3afdf133d46f94c854e61d9e8bff (patch)
tree8bbe974b5d6701f930bdd6761261100d6d3f81a0 /components
parent6f9dc349eed408ba583cf469d9585dea7a357198 (diff)
Fix typo in velocity
Diffstat (limited to 'components')
-rw-r--r--components/velocity/index.js2
-rw-r--r--components/velocity/package.json2
2 files changed, 2 insertions, 2 deletions
diff --git a/components/velocity/index.js b/components/velocity/index.js
index 2becf51..9d45721 100644
--- a/components/velocity/index.js
+++ b/components/velocity/index.js
@@ -7,7 +7,7 @@ import { Component } from '@serpentity/serpentity';
* -y <Number> // the y component of velocity vector
* -z <Number> // the z component of velocity vector
*/
-module export class Velocity extends Component {
+export class Velocity extends Component {
constructor(config) {
super(config)
diff --git a/components/velocity/package.json b/components/velocity/package.json
index c4dc67e..8ca3916 100644
--- a/components/velocity/package.json
+++ b/components/velocity/package.json
@@ -1,6 +1,6 @@
{
"name": "@serpentity/components.velocity",
- "version": "4.0.1",
+ "version": "4.0.2",
"description": "Velocity component for serpentity",
"main": "index.js",
"author": "Rubén Beltrán del Río <subscriptions@unlimited.pizza>",