boperators 0.1.2 → 0.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/README.md +2 -0
  2. package/logo.png +0 -0
  3. package/package.json +3 -2
package/README.md CHANGED
@@ -3,6 +3,8 @@
3
3
  # boperators
4
4
  ### Operator overloading JavaScript and TypeScript.
5
5
 
6
+ ![Sym.JS logo](./logo.png)
7
+
6
8
  </center>
7
9
 
8
10
  Operator overloading is a common programming feature that JavaScript lacks. Just something as simple as adding two vectors, we've got to create a `.Add` method or add elements one-at-a-time.
package/logo.png ADDED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "boperators",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "license": "MIT",
5
5
  "description": "Operator overloading for TypeScript.",
6
6
  "repository": {
@@ -45,7 +45,8 @@
45
45
  "package.json",
46
46
  "license.txt",
47
47
  "README.md",
48
- "dist"
48
+ "dist",
49
+ "logo.png"
49
50
  ],
50
51
  "devDependencies": {
51
52
  "@types/node": "^22.0.0",