@spark-ui/cli-utils 17.2.3-beta.1 → 17.2.4-beta.0
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 +10 -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
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
|
/**
|