Skip to content

Commit 5eb0e14

Browse files
committed
more tunings
1 parent 4db291f commit 5eb0e14

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

Diff for: src/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"license": "BSD-3-Clause",
1010
"main": "./core.js",
1111
"files": [
12-
"core"
12+
"core/*"
1313
],
1414
"dependencies": {
1515
"@patternslib/dev": "^2.7.1"

Diff for: src/pat/validation/validation.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Patterns validate - Form vlidation
2-
import "@patternslib/core/polyfills"; // SubmitEvent.submitter for Safari < 15.4 and jsDOM
2+
import "@patternslib/core/core/polyfills"; // SubmitEvent.submitter for Safari < 15.4 and jsDOM
33
import { Base, Parser, dom, events, logging, utils } from "@patternslib/core";
44

55
const log = logging.getLogger("pat-validation");

Diff for: src/polyfills.js

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ import "promise-polyfill/src/polyfill";
1717
import "url-polyfill";
1818
import "whatwg-fetch";
1919
import { ResizeObserver as ResizeObserverPolyfill } from "@juggle/resize-observer";
20+
import "./core/polyfills";
2021

2122
if ("ResizeObserver" in window === false) {
2223
window.ResizeObserver = ResizeObserverPolyfill;

0 commit comments

Comments
 (0)