uiadmin
uiadmin copied to clipboard
Bump esbuild and unocss in /front-end/uiadmin-uniapp
Bumps esbuild to 0.25.2 and updates ancestor dependency unocss. These dependencies need to be updated together.
Updates esbuild from 0.23.1 to 0.25.2
Release notes
Sourced from esbuild's releases.
v0.25.2
Support flags in regular expressions for the API (#4121)
The JavaScript plugin API for esbuild takes JavaScript regular expression objects for the
filteroption. Internally these are translated into Go regular expressions. However, this translation previously ignored theflagsproperty of the regular expression. With this release, esbuild will now translate JavaScript regular expression flags into Go regular expression flags. Specifically the JavaScript regular expression/\.[jt]sx?$/iis turned into the Go regular expression`(?i)\.[jt]sx?$`internally inside of esbuild's API. This should make it possible to use JavaScript regular expressions with theiflag. Note that JavaScript and Go don't support all of the same regular expression features, so this mapping is only approximate.Fix node-specific annotations for string literal export names (#4100)
When node instantiates a CommonJS module, it scans the AST to look for names to expose via ESM named exports. This is a heuristic that looks for certain patterns such as
exports.NAME = ...ormodule.exports = { ... }. This behavior is used by esbuild to "annotate" CommonJS code that was converted from ESM with the original ESM export names. For example, when converting the fileexport let foo, barfrom ESM to CommonJS, esbuild appends this to the end of the file:// Annotate the CommonJS export names for ESM import in node: 0 && (module.exports = { bar, foo });However, this feature previously didn't work correctly for export names that are not valid identifiers, which can be constructed using string literal export names. The generated code contained a syntax error. That problem is fixed in this release:
// Original code let foo export { foo as "foo!" }// Old output (with --format=cjs --platform=node) ... 0 && (module.exports = { "foo!" });
// New output (with --format=cjs --platform=node) ... 0 && (module.exports = { "foo!": null });
Basic support for index source maps (#3439, #4109)
The source map specification has an optional mode called index source maps that makes it easier for tools to create an aggregate JavaScript file by concatenating many smaller JavaScript files with source maps, and then generate an aggregate source map by simply providing the original source maps along with some offset information. My understanding is that this is rarely used in practice. I'm only aware of two uses of it in the wild: ClojureScript and Turbopack.
This release provides basic support for indexed source maps. However, the implementation has not been tested on a real app (just on very simple test input). If you are using index source maps in a real app, please try this out and report back if anything isn't working for you.
Note that this is also not a complete implementation. For example, index source maps technically allows nesting source maps to an arbitrary depth, while esbuild's implementation in this release only supports a single level of nesting. It's unclear whether supporting more than one level of nesting is important or not given the lack of available test cases.
This feature was contributed by
@clyfish.v0.25.1
... (truncated)
Changelog
Sourced from esbuild's changelog.
Changelog: 2024
This changelog documents all esbuild versions published in the year 2024 (versions 0.19.12 through 0.24.2).
0.24.2
Fix regression with
--defineandimport.meta(#4010, #4012, #4013)The previous change in version 0.24.1 to use a more expression-like parser for
definevalues to allow quoted property names introduced a regression that removed the ability to use--define:import.meta=.... Even thoughimportis normally a keyword that can't be used as an identifier, ES modules special-case theimport.metaexpression to behave like an identifier anyway. This change fixes the regression.This fix was contributed by
@sapphi-red.0.24.1
Allow
es2024as a target intsconfig.json(#4004)TypeScript recently added
es2024as a compilation target, so esbuild now supports this in thetargetfield oftsconfig.jsonfiles, such as in the following configuration file:{ "compilerOptions": { "target": "ES2024" } }As a reminder, the only thing that esbuild uses this field for is determining whether or not to use legacy TypeScript behavior for class fields. You can read more in the documentation.
This fix was contributed by
@billyjanitsch.Allow automatic semicolon insertion after
get/setThis change fixes a grammar bug in the parser that incorrectly treated the following code as a syntax error:
class Foo { get *x() {} set *y() {} }The above code will be considered valid starting with this release. This change to esbuild follows a similar change to TypeScript which will allow this syntax starting with TypeScript 5.7.
Allow quoted property names in
--defineand--pure(#4008)The
defineandpureAPI options now accept identifier expressions containing quoted property names. Previously all identifiers in the identifier expression had to be bare identifiers. This change now makes--defineand--pureconsistent with--global-name, which already supported quoted property names. For example, the following is now possible:
... (truncated)
Commits
4475787publish 0.25.2 to npm8f56771fix #4121: map js regexp flags to go regexp flags36b458dfollow-up to #41098b8437cfeat: support index source map (#4109)75286c1unit test for absolute windows paths in source mapbcc77fbfix #4100: invalid identifiers in node annotation37cb6a2fix a warning fromnpm publish6bfc1c1publish 0.25.1 to npmf9b3952fix #4078: prepend namespaces to source map pathsccf3dd7add "contributed by" in changelog- Additional commits viewable in compare view
Updates unocss from 0.61.9 to 66.1.0-beta.8
Release notes
Sourced from unocss's releases.
v66.1.0-beta.8
🚀 Features
- preset-wind4: Add
utilityResolveroption support utility convert - by@zyyvin unocss/unocss#4544 (a8864)🐞 Bug Fixes
- preset-wind4:
presetWind4ring rules - by@praburangkiin unocss/unocss#4539 (7b99b)- Shadow property - by
@antfuin unocss/unocss#4546 (08b52)- Provide rule context in border rules - by
@zyyvin unocss/unocss#4552 (c31f2)🏎 Performance
- preset-wind4: Hoist remRE - by
@Simon-He95in unocss/unocss#4548 (55e70)View changes on GitHub
v66.1.0-beta.7
🚀 Features
- eslint-plugin: Support ordering jsx binding - by
@zhangmo8in unocss/unocss#4528 (c6adc)- preset-wind4: Add
processThemeVarsoption - by@zyyvin unocss/unocss#4533 (44cb5)🐞 Bug Fixes
- inspector:
- Inspector base with vite base " - by
@zyyvin unocss/unocss#4505 (4f82e)- Fix log path - by
@zhangmo8in unocss/unocss#4536 (23366)- preset-wind4:
- Restore support for color default - by
@zyyvin unocss/unocss#4529 (31e02)- Fix filter css variables - by
@hrel11and@zyyvin unocss/unocss#4527 (64347)- ThemeTracking for background gradient color - by
@zyyv(7b6e5)View changes on GitHub
v66.1.0-beta.6
🚀 Features
- preset-wind4: Track used theme keys - by
@zyyvin unocss/unocss#4512 (34e42)🐞 Bug Fixes
- core:
- Fix
CountableSeton standard class field semantics - by@hi-ogawaand@zyyvin unocss/unocss#4437 (6deb9)- Correct time to add active rule - by
@zyyvin unocss/unocss#4508 (ffb99)- inspector:
- Inspector base with vite base - by
@zhangmo8in unocss/unocss#4505 (c96fd)- intereactive:
... (truncated)
Commits
724113bchore: release v66.1.0-beta.80dbf353chore: release v66.1.0-beta.7a4eea88chore: release v66.1.0-beta.649aecd0chore: release v66.1.0-beta.51be5d99chore: release v66.1.0-beta.4413e872chore: release v66.1.0-beta.3ad5b40bchore: release v66.1.0-beta.2cc84996chore: release v66.1.0-beta.1355558bfeat(packages-preset): new preset forpreset-wind4(#4439)5000590chore: release v66.0.0- Additional commits viewable in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) You can disable automated security fix PRs for this repo from the Security Alerts page.