tegaki 0.11.0 → 0.11.1
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/CHANGELOG.md +6 -0
- package/package.json +9 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# tegaki
|
|
2
2
|
|
|
3
|
+
## 0.11.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`5e5049f`](https://github.com/KurtGokhan/tegaki/commit/5e5049ffc86a275fd2892fcb683d1e1ad702542e) Thanks [@KurtGokhan](https://github.com/KurtGokhan)! - use correct import path for node/ssr imports
|
|
8
|
+
|
|
3
9
|
## 0.11.0
|
|
4
10
|
|
|
5
11
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tegaki",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Framework-agnostic animated handwriting renderer with React, Svelte, Vue, SolidJS, Astro, and Web Components adapters",
|
|
6
6
|
"keywords": [
|
|
@@ -82,25 +82,29 @@
|
|
|
82
82
|
"tegaki@dev": "./fonts/caveat/bundle.ts",
|
|
83
83
|
"source": "./fonts/caveat/bundle.ts",
|
|
84
84
|
"types": "./dist/fonts/caveat/bundle.d.mts",
|
|
85
|
-
"
|
|
85
|
+
"node": "./fonts/caveat/bundle.ts",
|
|
86
|
+
"default": "./dist/fonts/caveat/bundle.mjs"
|
|
86
87
|
},
|
|
87
88
|
"./fonts/italianno": {
|
|
88
89
|
"tegaki@dev": "./fonts/italianno/bundle.ts",
|
|
89
90
|
"source": "./fonts/italianno/bundle.ts",
|
|
90
91
|
"types": "./dist/fonts/italianno/bundle.d.mts",
|
|
91
|
-
"
|
|
92
|
+
"node": "./fonts/italianno/bundle.ts",
|
|
93
|
+
"default": "./dist/fonts/italianno/bundle.mjs"
|
|
92
94
|
},
|
|
93
95
|
"./fonts/tangerine": {
|
|
94
96
|
"tegaki@dev": "./fonts/tangerine/bundle.ts",
|
|
95
97
|
"source": "./fonts/tangerine/bundle.ts",
|
|
96
98
|
"types": "./dist/fonts/tangerine/bundle.d.mts",
|
|
97
|
-
"
|
|
99
|
+
"node": "./fonts/tangerine/bundle.ts",
|
|
100
|
+
"default": "./dist/fonts/tangerine/bundle.mjs"
|
|
98
101
|
},
|
|
99
102
|
"./fonts/parisienne": {
|
|
100
103
|
"tegaki@dev": "./fonts/parisienne/bundle.ts",
|
|
101
104
|
"source": "./fonts/parisienne/bundle.ts",
|
|
102
105
|
"types": "./dist/fonts/parisienne/bundle.d.mts",
|
|
103
|
-
"
|
|
106
|
+
"node": "./fonts/parisienne/bundle.ts",
|
|
107
|
+
"default": "./dist/fonts/parisienne/bundle.mjs"
|
|
104
108
|
}
|
|
105
109
|
},
|
|
106
110
|
"files": [
|