svelte 5.48.3 → 5.48.4

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
@@ -2,7 +2,7 @@
2
2
  "name": "svelte",
3
3
  "description": "Cybernetically enhanced web apps",
4
4
  "license": "MIT",
5
- "version": "5.48.3",
5
+ "version": "5.48.4",
6
6
  "type": "module",
7
7
  "types": "./types/index.d.ts",
8
8
  "engines": {
@@ -508,8 +508,12 @@ function read_value(parser) {
508
508
  if (escaped) {
509
509
  value += '\\' + char;
510
510
  escaped = false;
511
+ parser.index++;
512
+ continue;
511
513
  } else if (char === '\\') {
512
514
  escaped = true;
515
+ parser.index++;
516
+ continue;
513
517
  } else if (char === quote_mark) {
514
518
  quote_mark = null;
515
519
  } else if (char === ')') {
package/src/version.js CHANGED
@@ -4,5 +4,5 @@
4
4
  * The current version, as set in package.json.
5
5
  * @type {string}
6
6
  */
7
- export const VERSION = '5.48.3';
7
+ export const VERSION = '5.48.4';
8
8
  export const PUBLIC_VERSION = '5';