@spark-ui/cli-utils 17.2.3 → 17.2.4
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/CHANGELOG.md +19 -0
- package/bin/spark.mjs +2 -1
- package/package.json +1 -1
- package/test/spark-generate.test.ts +1 -1
- package/test/utils/cmd.js +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,22 @@
|
|
|
1
|
+
## 17.2.4 (2026-03-28)
|
|
2
|
+
|
|
3
|
+
### 🩹 Fixes
|
|
4
|
+
|
|
5
|
+
- replaced eslint and prettier with oxlint and oxfmt ([14fd2cf40](https://github.com/leboncoin/spark-web/commit/14fd2cf40))
|
|
6
|
+
|
|
7
|
+
### 💅 Refactors
|
|
8
|
+
|
|
9
|
+
- fixed a11y tests following vite updates ([fcd00dc47](https://github.com/leboncoin/spark-web/commit/fcd00dc47))
|
|
10
|
+
- oxfmt fixes ([ed6eb5793](https://github.com/leboncoin/spark-web/commit/ed6eb5793))
|
|
11
|
+
|
|
12
|
+
### 📦 Build
|
|
13
|
+
|
|
14
|
+
- vite v8 ([6055bc430](https://github.com/leboncoin/spark-web/commit/6055bc430))
|
|
15
|
+
|
|
16
|
+
### ❤️ Thank You
|
|
17
|
+
|
|
18
|
+
- Powerplex @Powerplex
|
|
19
|
+
|
|
1
20
|
## 17.2.3 (2026-03-27)
|
|
2
21
|
|
|
3
22
|
### 🩹 Fixes
|
package/bin/spark.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import path from 'node:path'
|
|
2
|
+
import { fileURLToPath } from 'url'
|
|
2
3
|
|
|
3
4
|
import fse from 'fs-extra'
|
|
4
|
-
import { fileURLToPath } from 'url'
|
|
5
5
|
import { afterAll, beforeEach, describe, expect, it } from 'vitest'
|
|
6
6
|
|
|
7
7
|
import { TemplateGenerator } from '../src/generate/generators/TemplateGenerator.mjs'
|
package/test/utils/cmd.js
CHANGED
|
@@ -5,11 +5,12 @@
|
|
|
5
5
|
* @see https://gist.github.com/zorrodg/c349cf54a3f6d0a9ba62e0f4066f31cb
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
|
-
import concat from 'concat-stream'
|
|
9
|
-
import spawn from 'cross-spawn'
|
|
10
8
|
import { existsSync } from 'fs'
|
|
11
9
|
import { constants } from 'os'
|
|
12
10
|
|
|
11
|
+
import concat from 'concat-stream'
|
|
12
|
+
import spawn from 'cross-spawn'
|
|
13
|
+
|
|
13
14
|
const PATH = process.env.PATH
|
|
14
15
|
|
|
15
16
|
/**
|