git-hash-art 0.0.3 → 0.1.0
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/.release-it.json +1 -1
- package/CHANGELOG.md +15 -0
- package/dist/main.js +262 -155
- package/dist/main.js.map +1 -1
- package/dist/module.js +261 -154
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +20 -0
- package/dist/types.d.ts.map +1 -0
- package/global.d.ts +12 -0
- package/package.json +15 -11
- package/src/{index.js → index.ts} +36 -31
- package/src/lib/canvas/{colors.js → colors.ts} +53 -11
- package/src/lib/canvas/{draw.js → draw.ts} +29 -11
- package/src/lib/canvas/shapes/{basic.js → basic.ts} +14 -12
- package/src/lib/canvas/shapes/{complex.js → complex.ts} +118 -34
- package/src/lib/canvas/shapes/{index.js → index.ts} +7 -1
- package/src/lib/canvas/shapes/sacred.ts +206 -0
- package/src/lib/canvas/shapes/utils.ts +65 -0
- package/src/lib/{constants.js → constants.ts} +32 -5
- package/src/lib/{utils.js → utils.ts} +34 -6
- package/tsconfig.json +16 -0
- package/eslint.config.mjs +0 -29
- package/src/lib/canvas/shapes/sacred.js +0 -173
- package/src/lib/canvas/shapes/utils.js +0 -37
package/.release-it.json
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -4,9 +4,24 @@ All notable changes to this project will be documented in this file. Dates are d
|
|
|
4
4
|
|
|
5
5
|
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
6
6
|
|
|
7
|
+
#### [0.1.0](https://github.com/gfargo/git-hash-art/compare/0.0.4...0.1.0)
|
|
8
|
+
|
|
9
|
+
- update shape drawing for platonic solids [`c26decd`](https://github.com/gfargo/git-hash-art/commit/c26decd8df9d7d47615efce37da8fdf554cdfcc4)
|
|
10
|
+
|
|
11
|
+
#### [0.0.4](https://github.com/gfargo/git-hash-art/compare/0.0.3...0.0.4)
|
|
12
|
+
|
|
13
|
+
> 29 October 2024
|
|
14
|
+
|
|
15
|
+
- Add TypeScript support and update scripts [`8983ca6`](https://github.com/gfargo/git-hash-art/commit/8983ca69e7232b52fce17e94901c7c67c2f9b62e)
|
|
16
|
+
- Convert shape modules to TypeScript [`103ee82`](https://github.com/gfargo/git-hash-art/commit/103ee82663fc4f940574467601fa5fb4a72856e8)
|
|
17
|
+
- chore: release v0.0.4 [`73ce0cf`](https://github.com/gfargo/git-hash-art/commit/73ce0cf1e41c6e8bfeb8447fcc930b49026e6390)
|
|
18
|
+
|
|
7
19
|
#### [0.0.3](https://github.com/gfargo/git-hash-art/compare/0.0.2...0.0.3)
|
|
8
20
|
|
|
21
|
+
> 28 October 2024
|
|
22
|
+
|
|
9
23
|
- Add CHANGELOG.md and adjust package.json [`c25cfb3`](https://github.com/gfargo/git-hash-art/commit/c25cfb3dff5054e7dc49c47776c74b6032df914e)
|
|
24
|
+
- chore: release v0.0.3 [`f6cc7bd`](https://github.com/gfargo/git-hash-art/commit/f6cc7bdcf738081b8c929bce8a41fe48aba76182)
|
|
10
25
|
|
|
11
26
|
#### 0.0.2
|
|
12
27
|
|