@jsenv/eslint-import-resolver
Advanced tools
Changelog
37.0.0
urlInfo.context
or reference.ownerUrlInfo.context
reference.parentUrl
becomes reference.ownerUrlInfo.url
reference.urlInfo
context.referenceUtils
moved to urlInfo.dependencies
.cook
, .cookDependencies
, .getWithoutSearchParam
, .isUsed
.remove
, .inline
reference.astInfo
urlInfo.referenceToOthersSet
urlInfo.referenceFromOthersSet
urlInfo.firstReference
urlInfo.contentFinalized
urlInfo.graph
graph.rootUrlInfo
urlInfo.contentAst
and urlInfo.contentEtag
urlInfo.url
now readonly and frozenreference.url
now readonly and frozenreference.prev
and reference.next
always set early to be accessible inside resolveReference and redirectReference hooks?hot
(was ?hmr
)assert
keyword is entirely removed when import assertions are not supportedChangelog
36.0.0
@jsenv/plugin-explorer
resolveUrl
-> resolveReference
urlAnalysis
param into referenceAnalysis
urlResolution
param into nodeEsmResolution
and webResolution
Changelog
35.0.0
@jsenv/test
and update how runtimes are configuredversion 34.0
import { executeTestPlan, chromium } from "@jsenv/core";
await executeTestPlan({
testPlan: {
"**/*.test.html": {
runtime: chromium,
runtimeParams: { headful: true },
},
},
});
version 35.0
import { executeTestPlan, chromium } from "@jsenv/test";
await executeTestPlan({
testPlan: {
"**/*.test.html": {
runtime: chromium({ headful: true }),
},
},
});