Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade all deps #437

Merged
merged 19 commits into from
Nov 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion .github/workflows/ci_eslint_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- ubuntu-22.04
- macos-12 # until https://github.com/microsoft/playwright/issues/30585
- windows-2022
node: [22.3.0]
node: [22.11.0]
runs-on: ${{ matrix.os }}
name: test on ${{ matrix.os }} and node ${{ matrix.node }}
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci_test_workspace.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- ubuntu-22.04
- macos-12 # until https://github.com/microsoft/playwright/issues/30585
- windows-2022
node: [22.3.0]
node: [22.11.0]
runs-on: ${{ matrix.os }}
name: test on ${{ matrix.os }} and node ${{ matrix.node }}
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr_impact_on_dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
pr_impact:
strategy:
matrix:
os: [ubuntu-20.04]
os: [ubuntu-22.04]
node: [22.3.0]
runs-on: ${{ matrix.os }}
name: pr impact
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr_impact_on_performances.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
perf_impact:
strategy:
matrix:
os: [ubuntu-20.04]
os: [ubuntu-22.04]
node: [22.3.0]
runs-on: ${{ matrix.os }}
name: performance impact
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/testing_github_check_run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
test:
strategy:
matrix:
os: [ubuntu-20.04]
os: [ubuntu-22.04]
node: [22.3.0]
runs-on: ${{ matrix.os }}
name: test on ${{ matrix.os }} and node ${{ matrix.node }}
Expand Down
19 changes: 14 additions & 5 deletions dist/jsenv_core.js
Original file line number Diff line number Diff line change
Expand Up @@ -11114,7 +11114,7 @@ const watchSourceFiles = (
return stopWatchingSourceFiles;
};

const jsenvCoreDirectoryUrl = new URL("./jsenv-core/", import.meta.url);
const jsenvCoreDirectoryUrl = new URL("../", import.meta.url);

const jsenvPluginHtmlSyntaxErrorFallback = () => {
const htmlSyntaxErrorFileUrl = new URL(
Expand Down Expand Up @@ -15087,7 +15087,7 @@ const jsenvPluginDirectoryReferenceEffect = (
reference.filenameHint = `${
reference.ownerUrlInfo.filenameHint
}${urlToFilename$1(reference.url)}/`;
} else {
} else if (reference.specifier.endsWith("./")) ; else {
reference.filenameHint = `${urlToFilename$1(reference.url)}/`;
}
let actionForDirectory;
Expand Down Expand Up @@ -18742,6 +18742,7 @@ const jsenvPluginProtocolFile = ({
magicExtensions,
magicDirectoryIndex,
preserveSymlinks,
directoryListingUrlMocks,
}) => {
return [
jsenvPluginFsRedirection({
Expand Down Expand Up @@ -18857,6 +18858,7 @@ const jsenvPluginProtocolFile = ({
parentDirectoryContentArray,
parentDirectoryUrl,
urlInfo.context.rootDirectoryUrl,
directoryListingUrlMocks,
);
return {
contentType: "text/html",
Expand Down Expand Up @@ -18909,6 +18911,7 @@ const generateHtmlForENOENTOnHtmlFile = (
parentDirectoryContentArray,
parentDirectoryUrl,
rootDirectoryUrl,
directoryListingUrlMocks,
) => {
const htmlFor404AndParentDir = String(
readFileSync(html404AndParentDirFileUrl),
Expand All @@ -18919,7 +18922,9 @@ const generateHtmlForENOENTOnHtmlFile = (
rootDirectoryUrl,
);
const replacers = {
fileUrl: url,
fileUrl: directoryListingUrlMocks
? `@jsenv/core/${urlToRelativeUrl(url, jsenvCoreDirectoryUrl)}`
: url,
fileRelativeUrl,
parentDirectoryUrl,
parentDirectoryRelativeUrl,
Expand Down Expand Up @@ -20488,6 +20493,7 @@ const getCorePlugins = ({
nodeEsmResolution = {},
magicExtensions,
magicDirectoryIndex,
directoryListingUrlMocks,
directoryReferenceEffect,
supervisor,
injections,
Expand Down Expand Up @@ -20533,6 +20539,7 @@ const getCorePlugins = ({
jsenvPluginProtocolFile({
magicExtensions,
magicDirectoryIndex,
directoryListingUrlMocks,
}),

...(nodeEsmResolution
Expand Down Expand Up @@ -22278,7 +22285,7 @@ const build = async ({
if (outDirectoryUrl === undefined) {
if (
process.env.CAPTURING_SIDE_EFFECTS ||
urlIsInsideOf(sourceDirectoryUrl, jsenvCoreDirectoryUrl)
(!true)
) {
outDirectoryUrl = new URL("../.jsenv_b/", sourceDirectoryUrl);
} else {
Expand Down Expand Up @@ -23115,6 +23122,7 @@ const startDevServer = async ({
supervisor = true,
magicExtensions,
magicDirectoryIndex,
directoryListingUrlMocks,
injections,
transpilation,
cacheControl = true,
Expand Down Expand Up @@ -23154,7 +23162,7 @@ const startDevServer = async ({
if (outDirectoryUrl === undefined) {
if (
process.env.CAPTURING_SIDE_EFFECTS ||
urlIsInsideOf(sourceDirectoryUrl, jsenvCoreDirectoryUrl)
(!true)
) {
outDirectoryUrl = new URL("../.jsenv/", sourceDirectoryUrl);
} else {
Expand Down Expand Up @@ -23307,6 +23315,7 @@ const startDevServer = async ({
nodeEsmResolution,
magicExtensions,
magicDirectoryIndex,
directoryListingUrlMocks,
supervisor,
injections,
transpilation,
Expand Down
34 changes: 17 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jsenv/core",
"version": "39.5.15",
"version": "39.5.16",
"description": "Tool to develop, test and build js projects",
"license": "MIT",
"author": {
Expand Down Expand Up @@ -69,29 +69,29 @@
"dependencies": {
"@financial-times/polyfill-useragent-normaliser": "1.10.2",
"@jsenv/abort": "4.3.0",
"@jsenv/ast": "6.3.1",
"@jsenv/ast": "6.3.4",
"@jsenv/filesystem": "4.10.11",
"@jsenv/humanize": "1.2.8",
"@jsenv/importmap": "1.2.1",
"@jsenv/integrity": "0.0.2",
"@jsenv/js-module-fallback": "1.3.44",
"@jsenv/js-module-fallback": "1.3.48",
"@jsenv/node-esm-resolution": "1.0.6",
"@jsenv/plugin-bundling": "2.7.13",
"@jsenv/plugin-minification": "1.5.8",
"@jsenv/plugin-supervisor": "1.5.22",
"@jsenv/plugin-transpilation": "1.4.53",
"@jsenv/plugin-bundling": "2.7.14",
"@jsenv/plugin-minification": "1.5.9",
"@jsenv/plugin-supervisor": "1.5.23",
"@jsenv/plugin-transpilation": "1.4.82",
"@jsenv/runtime-compat": "1.3.1",
"@jsenv/server": "15.3.1",
"@jsenv/sourcemap": "1.2.24",
"@jsenv/sourcemap": "1.2.25",
"@jsenv/url-meta": "8.5.2",
"@jsenv/urls": "2.5.2",
"@jsenv/utils": "2.1.2",
"string-width": "7.2.0"
},
"devDependencies": {
"@babel/plugin-syntax-import-attributes": "7.25.7",
"@babel/plugin-syntax-optional-chaining-assign": "7.25.7",
"@eslint/compat": "1.1.1",
"@babel/plugin-syntax-import-attributes": "7.26.0",
"@babel/plugin-syntax-optional-chaining-assign": "7.25.9",
"@eslint/compat": "1.2.2",
"@jsenv/assert": "workspace:*",
"@jsenv/cli": "workspace:*",
"@jsenv/core": "./",
Expand All @@ -103,15 +103,15 @@
"@jsenv/plugin-as-js-classic": "workspace:*",
"@jsenv/snapshot": "workspace:*",
"@jsenv/test": "workspace:*",
"@playwright/browser-chromium": "1.47.2",
"@playwright/browser-firefox": "1.47.2",
"@playwright/browser-webkit": "1.47.2",
"@playwright/browser-chromium": "1.48.2",
"@playwright/browser-firefox": "1.48.2",
"@playwright/browser-webkit": "1.48.2",
"anchor-markdown-header": "0.7.0",
"babel-plugin-transform-async-to-promises": "0.8.18",
"eslint": "9.11.1",
"marked": "14.1.2",
"eslint": "9.13.0",
"marked": "14.1.3",
"open": "10.1.0",
"playwright": "1.47.2",
"playwright": "1.48.2",
"prettier": "3.3.3",
"prettier-plugin-organize-imports": "4.1.0",
"strip-ansi": "7.1.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/independent/assert/dist/jsenv_assert_browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -5980,7 +5980,7 @@ function isFullWidth(x) {
return x === 0x3000 || x >= 0xFF01 && x <= 0xFF60 || x >= 0xFFE0 && x <= 0xFFE6;
}
function isWide(x) {
return x >= 0x1100 && x <= 0x115F || x === 0x231A || x === 0x231B || x === 0x2329 || x === 0x232A || x >= 0x23E9 && x <= 0x23EC || x === 0x23F0 || x === 0x23F3 || x === 0x25FD || x === 0x25FE || x === 0x2614 || x === 0x2615 || x >= 0x2648 && x <= 0x2653 || x === 0x267F || x === 0x2693 || x === 0x26A1 || x === 0x26AA || x === 0x26AB || x === 0x26BD || x === 0x26BE || x === 0x26C4 || x === 0x26C5 || x === 0x26CE || x === 0x26D4 || x === 0x26EA || x === 0x26F2 || x === 0x26F3 || x === 0x26F5 || x === 0x26FA || x === 0x26FD || x === 0x2705 || x === 0x270A || x === 0x270B || x === 0x2728 || x === 0x274C || x === 0x274E || x >= 0x2753 && x <= 0x2755 || x === 0x2757 || x >= 0x2795 && x <= 0x2797 || x === 0x27B0 || x === 0x27BF || x === 0x2B1B || x === 0x2B1C || x === 0x2B50 || x === 0x2B55 || x >= 0x2E80 && x <= 0x2E99 || x >= 0x2E9B && x <= 0x2EF3 || x >= 0x2F00 && x <= 0x2FD5 || x >= 0x2FF0 && x <= 0x2FFF || x >= 0x3001 && x <= 0x303E || x >= 0x3041 && x <= 0x3096 || x >= 0x3099 && x <= 0x30FF || x >= 0x3105 && x <= 0x312F || x >= 0x3131 && x <= 0x318E || x >= 0x3190 && x <= 0x31E3 || x >= 0x31EF && x <= 0x321E || x >= 0x3220 && x <= 0x3247 || x >= 0x3250 && x <= 0x4DBF || x >= 0x4E00 && x <= 0xA48C || x >= 0xA490 && x <= 0xA4C6 || x >= 0xA960 && x <= 0xA97C || x >= 0xAC00 && x <= 0xD7A3 || x >= 0xF900 && x <= 0xFAFF || x >= 0xFE10 && x <= 0xFE19 || x >= 0xFE30 && x <= 0xFE52 || x >= 0xFE54 && x <= 0xFE66 || x >= 0xFE68 && x <= 0xFE6B || x >= 0x16FE0 && x <= 0x16FE4 || x === 0x16FF0 || x === 0x16FF1 || x >= 0x17000 && x <= 0x187F7 || x >= 0x18800 && x <= 0x18CD5 || x >= 0x18D00 && x <= 0x18D08 || x >= 0x1AFF0 && x <= 0x1AFF3 || x >= 0x1AFF5 && x <= 0x1AFFB || x === 0x1AFFD || x === 0x1AFFE || x >= 0x1B000 && x <= 0x1B122 || x === 0x1B132 || x >= 0x1B150 && x <= 0x1B152 || x === 0x1B155 || x >= 0x1B164 && x <= 0x1B167 || x >= 0x1B170 && x <= 0x1B2FB || x === 0x1F004 || x === 0x1F0CF || x === 0x1F18E || x >= 0x1F191 && x <= 0x1F19A || x >= 0x1F200 && x <= 0x1F202 || x >= 0x1F210 && x <= 0x1F23B || x >= 0x1F240 && x <= 0x1F248 || x === 0x1F250 || x === 0x1F251 || x >= 0x1F260 && x <= 0x1F265 || x >= 0x1F300 && x <= 0x1F320 || x >= 0x1F32D && x <= 0x1F335 || x >= 0x1F337 && x <= 0x1F37C || x >= 0x1F37E && x <= 0x1F393 || x >= 0x1F3A0 && x <= 0x1F3CA || x >= 0x1F3CF && x <= 0x1F3D3 || x >= 0x1F3E0 && x <= 0x1F3F0 || x === 0x1F3F4 || x >= 0x1F3F8 && x <= 0x1F43E || x === 0x1F440 || x >= 0x1F442 && x <= 0x1F4FC || x >= 0x1F4FF && x <= 0x1F53D || x >= 0x1F54B && x <= 0x1F54E || x >= 0x1F550 && x <= 0x1F567 || x === 0x1F57A || x === 0x1F595 || x === 0x1F596 || x === 0x1F5A4 || x >= 0x1F5FB && x <= 0x1F64F || x >= 0x1F680 && x <= 0x1F6C5 || x === 0x1F6CC || x >= 0x1F6D0 && x <= 0x1F6D2 || x >= 0x1F6D5 && x <= 0x1F6D7 || x >= 0x1F6DC && x <= 0x1F6DF || x === 0x1F6EB || x === 0x1F6EC || x >= 0x1F6F4 && x <= 0x1F6FC || x >= 0x1F7E0 && x <= 0x1F7EB || x === 0x1F7F0 || x >= 0x1F90C && x <= 0x1F93A || x >= 0x1F93C && x <= 0x1F945 || x >= 0x1F947 && x <= 0x1F9FF || x >= 0x1FA70 && x <= 0x1FA7C || x >= 0x1FA80 && x <= 0x1FA88 || x >= 0x1FA90 && x <= 0x1FABD || x >= 0x1FABF && x <= 0x1FAC5 || x >= 0x1FACE && x <= 0x1FADB || x >= 0x1FAE0 && x <= 0x1FAE8 || x >= 0x1FAF0 && x <= 0x1FAF8 || x >= 0x20000 && x <= 0x2FFFD || x >= 0x30000 && x <= 0x3FFFD;
return x >= 0x1100 && x <= 0x115F || x === 0x231A || x === 0x231B || x === 0x2329 || x === 0x232A || x >= 0x23E9 && x <= 0x23EC || x === 0x23F0 || x === 0x23F3 || x === 0x25FD || x === 0x25FE || x === 0x2614 || x === 0x2615 || x >= 0x2630 && x <= 0x2637 || x >= 0x2648 && x <= 0x2653 || x === 0x267F || x >= 0x268A && x <= 0x268F || x === 0x2693 || x === 0x26A1 || x === 0x26AA || x === 0x26AB || x === 0x26BD || x === 0x26BE || x === 0x26C4 || x === 0x26C5 || x === 0x26CE || x === 0x26D4 || x === 0x26EA || x === 0x26F2 || x === 0x26F3 || x === 0x26F5 || x === 0x26FA || x === 0x26FD || x === 0x2705 || x === 0x270A || x === 0x270B || x === 0x2728 || x === 0x274C || x === 0x274E || x >= 0x2753 && x <= 0x2755 || x === 0x2757 || x >= 0x2795 && x <= 0x2797 || x === 0x27B0 || x === 0x27BF || x === 0x2B1B || x === 0x2B1C || x === 0x2B50 || x === 0x2B55 || x >= 0x2E80 && x <= 0x2E99 || x >= 0x2E9B && x <= 0x2EF3 || x >= 0x2F00 && x <= 0x2FD5 || x >= 0x2FF0 && x <= 0x2FFF || x >= 0x3001 && x <= 0x303E || x >= 0x3041 && x <= 0x3096 || x >= 0x3099 && x <= 0x30FF || x >= 0x3105 && x <= 0x312F || x >= 0x3131 && x <= 0x318E || x >= 0x3190 && x <= 0x31E5 || x >= 0x31EF && x <= 0x321E || x >= 0x3220 && x <= 0x3247 || x >= 0x3250 && x <= 0xA48C || x >= 0xA490 && x <= 0xA4C6 || x >= 0xA960 && x <= 0xA97C || x >= 0xAC00 && x <= 0xD7A3 || x >= 0xF900 && x <= 0xFAFF || x >= 0xFE10 && x <= 0xFE19 || x >= 0xFE30 && x <= 0xFE52 || x >= 0xFE54 && x <= 0xFE66 || x >= 0xFE68 && x <= 0xFE6B || x >= 0x16FE0 && x <= 0x16FE4 || x === 0x16FF0 || x === 0x16FF1 || x >= 0x17000 && x <= 0x187F7 || x >= 0x18800 && x <= 0x18CD5 || x >= 0x18CFF && x <= 0x18D08 || x >= 0x1AFF0 && x <= 0x1AFF3 || x >= 0x1AFF5 && x <= 0x1AFFB || x === 0x1AFFD || x === 0x1AFFE || x >= 0x1B000 && x <= 0x1B122 || x === 0x1B132 || x >= 0x1B150 && x <= 0x1B152 || x === 0x1B155 || x >= 0x1B164 && x <= 0x1B167 || x >= 0x1B170 && x <= 0x1B2FB || x >= 0x1D300 && x <= 0x1D356 || x >= 0x1D360 && x <= 0x1D376 || x === 0x1F004 || x === 0x1F0CF || x === 0x1F18E || x >= 0x1F191 && x <= 0x1F19A || x >= 0x1F200 && x <= 0x1F202 || x >= 0x1F210 && x <= 0x1F23B || x >= 0x1F240 && x <= 0x1F248 || x === 0x1F250 || x === 0x1F251 || x >= 0x1F260 && x <= 0x1F265 || x >= 0x1F300 && x <= 0x1F320 || x >= 0x1F32D && x <= 0x1F335 || x >= 0x1F337 && x <= 0x1F37C || x >= 0x1F37E && x <= 0x1F393 || x >= 0x1F3A0 && x <= 0x1F3CA || x >= 0x1F3CF && x <= 0x1F3D3 || x >= 0x1F3E0 && x <= 0x1F3F0 || x === 0x1F3F4 || x >= 0x1F3F8 && x <= 0x1F43E || x === 0x1F440 || x >= 0x1F442 && x <= 0x1F4FC || x >= 0x1F4FF && x <= 0x1F53D || x >= 0x1F54B && x <= 0x1F54E || x >= 0x1F550 && x <= 0x1F567 || x === 0x1F57A || x === 0x1F595 || x === 0x1F596 || x === 0x1F5A4 || x >= 0x1F5FB && x <= 0x1F64F || x >= 0x1F680 && x <= 0x1F6C5 || x === 0x1F6CC || x >= 0x1F6D0 && x <= 0x1F6D2 || x >= 0x1F6D5 && x <= 0x1F6D7 || x >= 0x1F6DC && x <= 0x1F6DF || x === 0x1F6EB || x === 0x1F6EC || x >= 0x1F6F4 && x <= 0x1F6FC || x >= 0x1F7E0 && x <= 0x1F7EB || x === 0x1F7F0 || x >= 0x1F90C && x <= 0x1F93A || x >= 0x1F93C && x <= 0x1F945 || x >= 0x1F947 && x <= 0x1F9FF || x >= 0x1FA70 && x <= 0x1FA7C || x >= 0x1FA80 && x <= 0x1FA89 || x >= 0x1FA8F && x <= 0x1FAC6 || x >= 0x1FACE && x <= 0x1FADC || x >= 0x1FADF && x <= 0x1FAE9 || x >= 0x1FAF0 && x <= 0x1FAF8 || x >= 0x20000 && x <= 0x2FFFD || x >= 0x30000 && x <= 0x3FFFD;
}

function validate(codePoint) {
Expand Down
10 changes: 5 additions & 5 deletions packages/independent/eslint-config-relax/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jsenv/eslint-config-relax",
"version": "1.2.7",
"version": "1.2.11",
"description": "A pleaseant ESLint configuration for any project",
"license": "MIT",
"author": {
Expand Down Expand Up @@ -30,13 +30,13 @@
],
"scripts": {},
"dependencies": {
"@babel/eslint-parser": "7.25.7",
"globals": "15.10.0",
"@babel/eslint-parser": "7.25.9",
"globals": "15.11.0",
"@jsenv/eslint-import-resolver": "8.2.0",
"@jsenv/urls": "2.5.2",
"eslint-plugin-import-x": "4.3.1",
"eslint-plugin-import-x": "4.4.0",
"eslint-plugin-html": "8.1.2",
"eslint-plugin-react": "7.37.1",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-regexp": "2.6.0"
},
"devDependencies": {}
Expand Down

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions packages/independent/eslint-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@
"@jsenv/eslint-import-resolver": "8.2.0"
},
"devDependencies": {
"@babel/core": "7.25.7",
"@babel/preset-env": "7.25.7",
"@babel/eslint-parser": "7.25.7",
"@babel/plugin-syntax-decorators": "7.25.7",
"@babel/plugin-syntax-jsx": "7.25.7"
"@babel/core": "7.26.0",
"@babel/preset-env": "7.26.0",
"@babel/eslint-parser": "7.25.9",
"@babel/plugin-syntax-decorators": "7.25.9",
"@babel/plugin-syntax-jsx": "7.25.9"
}
}
2 changes: 1 addition & 1 deletion packages/independent/eslint-import-resolver/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"prepublishOnly": "npm run build"
},
"devDependencies": {
"rollup": "4.24.0",
"rollup": "4.24.3",
"@jsenv/filesystem": "../filesystem/",
"@jsenv/importmap": "1.2.1",
"@jsenv/node-esm-resolution": "1.0.6"
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions packages/independent/snapshot/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jsenv/snapshot",
"version": "2.11.13",
"version": "2.11.14",
"description": "Snapshot testing",
"license": "MIT",
"author": {
Expand Down Expand Up @@ -31,11 +31,11 @@
],
"dependencies": {
"@jsenv/assert": "4.4.1",
"@jsenv/ast": "6.3.1",
"@jsenv/ast": "6.3.4",
"@jsenv/exception": "1.1.3",
"@jsenv/humanize": "1.2.8",
"@jsenv/filesystem": "4.10.11",
"@jsenv/terminal-recorder": "1.4.11",
"@jsenv/terminal-recorder": "1.4.14",
"@jsenv/urls": "2.5.2",
"@jsenv/utils": "2.1.2",
"ansi-regex": "6.1.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/independent/sourcemap/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jsenv/sourcemap",
"version": "1.2.24",
"version": "1.2.25",
"license": "MIT",
"repository": {
"type": "git",
Expand All @@ -17,7 +17,7 @@
},
"dependencies": {
"@jsenv/urls": "2.5.2",
"magic-string": "0.30.11",
"magic-string": "0.30.12",
"source-map-js": "1.2.1"
}
}
6 changes: 3 additions & 3 deletions packages/independent/terminal-recorder/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jsenv/terminal-recorder",
"version": "1.4.11",
"version": "1.4.14",
"description": "Record terminal output as .svg, .gif, .webm, .mp4",
"license": "MIT",
"repository": {
Expand Down Expand Up @@ -39,10 +39,10 @@
"dependencies": {
"@jsenv/humanize": "1.2.8",
"@jsenv/server": "15.3.1",
"@playwright/browser-chromium": "1.47.2",
"@playwright/browser-chromium": "1.48.2",
"ansi-regex": "6.1.0",
"he": "1.2.0",
"playwright": "1.47.2",
"playwright": "1.48.2",
"string-width": "5.1.2",
"strip-ansi": "7.1.0",
"webm-to-mp4": "1.0.0"
Expand Down
8 changes: 4 additions & 4 deletions packages/internal/ast/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jsenv/ast",
"version": "6.3.1",
"version": "6.3.4",
"description": "Parse and transform HTML, CSS and JS",
"license": "MIT",
"repository": {
Expand Down Expand Up @@ -29,13 +29,13 @@
"/src/"
],
"dependencies": {
"@babel/parser": "7.25.7",
"@babel/parser": "7.26.2",
"@jsenv/humanize": "1.2.8",
"@jsenv/urls": "2.5.2",
"acorn": "8.12.1",
"acorn": "8.14.0",
"acorn-import-attributes": "1.9.5",
"acorn-walk": "8.3.4",
"parse5": "7.1.2",
"parse5": "7.2.1",
"postcss": "8.4.47",
"postcss-value-parser": "4.2.0"
}
Expand Down
2 changes: 1 addition & 1 deletion packages/internal/js-module-fallback/dist/js/s.js.map

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions packages/internal/js-module-fallback/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jsenv/js-module-fallback",
"version": "1.3.44",
"version": "1.3.48",
"license": "MIT",
"repository": {
"type": "git",
Expand All @@ -26,13 +26,13 @@
"/dist/"
],
"dependencies": {
"@babel/parser": "7.25.7",
"@babel/plugin-transform-dynamic-import": "7.25.7",
"@babel/plugin-transform-modules-umd": "7.25.7",
"@babel/plugin-transform-modules-systemjs": "7.25.7",
"@babel/parser": "7.26.2",
"@babel/plugin-transform-dynamic-import": "7.25.9",
"@babel/plugin-transform-modules-umd": "7.25.9",
"@babel/plugin-transform-modules-systemjs": "7.25.9",
"babel-plugin-transform-async-to-promises": "0.8.18",
"@jsenv/ast": "6.3.1",
"@jsenv/sourcemap": "1.2.24",
"@jsenv/ast": "6.3.4",
"@jsenv/sourcemap": "1.2.25",
"@jsenv/urls": "2.5.2"
},
"scripts": {
Expand Down
Loading
Loading