harfbuzzjs 0.3.5 → 0.3.6

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/build-subset.sh CHANGED
@@ -7,7 +7,6 @@ em++ \
7
7
  -fno-rtti \
8
8
  -fno-threadsafe-statics \
9
9
  -fvisibility-inlines-hidden \
10
- -flto \
11
10
  -Oz \
12
11
  -I. \
13
12
  -DHB_TINY \
package/hb-subset.wasm CHANGED
Binary file
package/hb.wasm CHANGED
Binary file
package/hbjs.cc CHANGED
@@ -170,7 +170,7 @@ static hb_bool_t do_trace (hb_buffer_t *buffer,
170
170
  if (user_data->stop_phase != HB_SHAPE_DONT_STOP) {
171
171
  // Do we need to start stopping?
172
172
  char buf[12];
173
- snprintf (buf, 12, "%d ", user_data->stop_at);
173
+ snprintf (buf, 12, "%u ", user_data->stop_at);
174
174
  if ((user_data->current_phase == user_data->stop_phase) &&
175
175
  (strncmp(message, "end lookup ", 11) == 0) &&
176
176
  (strncmp(message + 11, buf, strlen(buf)) == 0)) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "harfbuzzjs",
3
- "version": "0.3.5",
3
+ "version": "0.3.6",
4
4
  "description": "Minimal version of HarfBuzz for JavaScript use",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -1,5 +0,0 @@
1
- {
2
- "cSpell.words": [
3
- "dfuncs"
4
- ]
5
- }