3 Commits

Author SHA1 Message Date
dependabot[bot]
20be0b5699 Bump vite in the npm_and_yarn group across 1 directory
Bumps the npm_and_yarn group with 1 update in the / directory: [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite).


Updates `vite` from 8.0.3 to 8.0.5
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v8.0.5/packages/vite)

---
updated-dependencies:
- dependency-name: vite
  dependency-version: 8.0.5
  dependency-type: direct:development
  dependency-group: npm_and_yarn
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-04-06 18:32:51 +00:00
Vick Scarlet
f12a147093 fix: format param force to string 2026-03-30 17:49:37 +08:00
dependabot[bot]
59a10587a7 Bump @isaacs/brace-expansion
Bumps the npm_and_yarn group with 1 update in the / directory: @isaacs/brace-expansion.


Updates `@isaacs/brace-expansion` from 5.0.0 to 5.0.1

---
updated-dependencies:
- dependency-name: "@isaacs/brace-expansion"
  dependency-version: 5.0.1
  dependency-type: indirect
  dependency-group: npm_and_yarn
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-02-07 21:48:26 +08:00
3 changed files with 586 additions and 462 deletions

View File

@@ -12,8 +12,8 @@
"test": "vitest"
},
"devDependencies": {
"v-transform": "^2.2.0",
"vite": "^7.3.1",
"vitest": "^4.0.18"
"v-transform": "^2.2.1",
"vite": "^8.0.5",
"vitest": "^4.1.2"
}
}

1040
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@@ -246,7 +246,7 @@ class Life {
}
format(discription) {
return discription.replaceAll(/\{\s*[0-9a-zA-Z_-]+\s*?\}/g, (match) => this.#format(match));
return `${discription}`.replaceAll(/\{\s*[0-9a-zA-Z_-]+\s*?\}/g, (match) => this.#format(match));
}
#format(key) {