@leafer/path 1.0.0-alpha.1 → 1.0.0-alpha.5

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.
package/package.json CHANGED
@@ -1,11 +1,13 @@
1
1
  {
2
2
  "name": "@leafer/path",
3
- "version": "1.0.0-alpha.1",
3
+ "version": "1.0.0-alpha.5",
4
4
  "description": "@leafer/path",
5
5
  "author": "Chao (Leafer) Wan",
6
6
  "license": "MIT",
7
7
  "main": "src/index.ts",
8
- "files": ["src"],
8
+ "files": [
9
+ "src"
10
+ ],
9
11
  "repository": {
10
12
  "type": "git",
11
13
  "url": "https://github.com/leaferjs/leafer.git"
@@ -17,9 +19,9 @@
17
19
  "leaferjs"
18
20
  ],
19
21
  "dependencies": {
20
- "@leafer/math": "1.0.0-alpha.1"
22
+ "@leafer/math": "1.0.0-alpha.5"
21
23
  },
22
24
  "devDependencies": {
23
- "@leafer/interface": "1.0.0-alpha.1"
25
+ "@leafer/interface": "1.0.0-alpha.5"
24
26
  }
25
- }
27
+ }
package/src/PathHelper.ts CHANGED
@@ -13,7 +13,7 @@ const tempPointBounds = {} as ITwoPointBoundsData
13
13
 
14
14
  export const PathHelper = {
15
15
 
16
- applyCorner(data: IPathCommandData, cornerRadius: number, cornerSmoothing?: number): IPathCommandData {
16
+ applyCorner(data: IPathCommandData, _cornerRadius: number, _cornerSmoothing?: number): IPathCommandData {
17
17
  return data
18
18
  },
19
19