scratch-paint 2.2.269 → 2.2.270

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 CHANGED
@@ -3,6 +3,13 @@
3
3
  All notable changes to this project will be documented in this file. See
4
4
  [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [2.2.270](https://github.com/scratchfoundation/scratch-paint/compare/v2.2.269...v2.2.270) (2024-07-05)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **deps:** lock file maintenance ([#2644](https://github.com/scratchfoundation/scratch-paint/issues/2644)) ([3ccbb22](https://github.com/scratchfoundation/scratch-paint/commit/3ccbb221b877e427f0e46f4d39d43b4a9352bcdb))
12
+
6
13
  ## [2.2.269](https://github.com/scratchfoundation/scratch-paint/compare/v2.2.268...v2.2.269) (2024-07-04)
7
14
 
8
15
 
@@ -22899,7 +22899,7 @@ var pp$9 = Parser.prototype;
22899
22899
 
22900
22900
  // ## Parser utilities
22901
22901
 
22902
- var literal = /^(?:'((?:\\.|[^'\\])*?)'|"((?:\\.|[^"\\])*?)")/s;
22902
+ var literal = /^(?:'((?:\\[^]|[^'\\])*?)'|"((?:\\[^]|[^"\\])*?)")/;
22903
22903
  pp$9.strictDirective = function(start) {
22904
22904
  if (this.options.ecmaVersion < 5) { return false }
22905
22905
  for (;;) {
@@ -28222,7 +28222,7 @@ pp.readWord = function() {
28222
28222
  // [walk]: util/walk.js
28223
28223
 
28224
28224
 
28225
- var version = "8.12.0";
28225
+ var version = "8.12.1";
28226
28226
 
28227
28227
  Parser.acorn = {
28228
28228
  Parser: Parser,