@jsenv/core 30.0.0 → 30.0.2

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/dist/main.js CHANGED
@@ -1370,7 +1370,7 @@ const collectFiles = async ({
1370
1370
  associations,
1371
1371
  predicate
1372
1372
  }) => {
1373
- const rootDirectoryUrl = assertAndNormalizeDirectoryUrl(directoryUrl);
1373
+ const rootDirectoryUrl = decodeURIComponent(assertAndNormalizeDirectoryUrl(directoryUrl));
1374
1374
  if (typeof predicate !== "function") {
1375
1375
  throw new TypeError(`predicate must be a function, got ${predicate}`);
1376
1376
  }
@@ -24813,7 +24813,7 @@ const registerEvent = ({
24813
24813
 
24814
24814
  const chromium = createRuntimeFromPlaywright({
24815
24815
  browserName: "chromium",
24816
- browserVersion: "108.0.5359.29",
24816
+ browserVersion: "109.0.5414.46",
24817
24817
  // to update, check https://github.com/microsoft/playwright/releases
24818
24818
  coveragePlaywrightAPIAvailable: true
24819
24819
  });
@@ -24821,7 +24821,7 @@ const chromiumIsolatedTab = chromium.isolatedTab;
24821
24821
 
24822
24822
  const firefox = createRuntimeFromPlaywright({
24823
24823
  browserName: "firefox",
24824
- browserVersion: "106.0" // to update, check https://github.com/microsoft/playwright/releases
24824
+ browserVersion: "107.0" // to update, check https://github.com/microsoft/playwright/releases
24825
24825
  });
24826
24826
 
24827
24827
  const firefoxIsolatedTab = firefox.isolatedTab;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jsenv/core",
3
- "version": "30.0.0",
3
+ "version": "30.0.2",
4
4
  "description": "Tool to develop, test and build js projects",
5
5
  "license": "MIT",
6
6
  "author": {
@@ -70,7 +70,7 @@
70
70
  "@jsenv/ast": "1.4.8",
71
71
  "@jsenv/babel-plugins": "1.1.0",
72
72
  "@jsenv/plugin-bundling": "1.0.0",
73
- "@jsenv/filesystem": "4.1.6",
73
+ "@jsenv/filesystem": "4.1.7",
74
74
  "@jsenv/importmap": "1.2.1",
75
75
  "@jsenv/integrity": "0.0.1",
76
76
  "@jsenv/log": "3.3.2",
@@ -110,7 +110,7 @@
110
110
  "eslint-plugin-html": "7.1.0",
111
111
  "eslint-plugin-import": "2.26.0",
112
112
  "eslint-plugin-react": "7.31.11",
113
- "playwright": "1.29.0",
113
+ "playwright": "1.29.1",
114
114
  "prettier": "2.8.1"
115
115
  }
116
116
  }
@@ -2,7 +2,7 @@ import { createRuntimeFromPlaywright } from "./from_playwright.js"
2
2
 
3
3
  export const chromium = createRuntimeFromPlaywright({
4
4
  browserName: "chromium",
5
- browserVersion: "108.0.5359.29", // to update, check https://github.com/microsoft/playwright/releases
5
+ browserVersion: "109.0.5414.46", // to update, check https://github.com/microsoft/playwright/releases
6
6
  coveragePlaywrightAPIAvailable: true,
7
7
  })
8
8
  export const chromiumIsolatedTab = chromium.isolatedTab
@@ -2,6 +2,6 @@ import { createRuntimeFromPlaywright } from "./from_playwright.js"
2
2
 
3
3
  export const firefox = createRuntimeFromPlaywright({
4
4
  browserName: "firefox",
5
- browserVersion: "106.0", // to update, check https://github.com/microsoft/playwright/releases
5
+ browserVersion: "107.0", // to update, check https://github.com/microsoft/playwright/releases
6
6
  })
7
7
  export const firefoxIsolatedTab = firefox.isolatedTab