Skip to content

Commit

Permalink
more tunings
Browse files Browse the repository at this point in the history
  • Loading branch information
thet committed Sep 27, 2022
1 parent 4db291f commit 5eb0e14
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"license": "BSD-3-Clause",
"main": "./core.js",
"files": [
"core"
"core/*"
],
"dependencies": {
"@patternslib/dev": "^2.7.1"
Expand Down
2 changes: 1 addition & 1 deletion src/pat/validation/validation.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Patterns validate - Form vlidation
import "@patternslib/core/polyfills"; // SubmitEvent.submitter for Safari < 15.4 and jsDOM
import "@patternslib/core/core/polyfills"; // SubmitEvent.submitter for Safari < 15.4 and jsDOM
import { Base, Parser, dom, events, logging, utils } from "@patternslib/core";

const log = logging.getLogger("pat-validation");
Expand Down
1 change: 1 addition & 0 deletions src/polyfills.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ import "promise-polyfill/src/polyfill";
import "url-polyfill";
import "whatwg-fetch";
import { ResizeObserver as ResizeObserverPolyfill } from "@juggle/resize-observer";
import "./core/polyfills";

if ("ResizeObserver" in window === false) {
window.ResizeObserver = ResizeObserverPolyfill;
Expand Down

0 comments on commit 5eb0e14

Please sign in to comment.