@cedarjs/cli 6.0.0-canary.2623 → 6.0.0-canary.2624

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cedarjs/cli",
3
- "version": "6.0.0-canary.2623",
3
+ "version": "6.0.0-canary.2624",
4
4
  "description": "The CedarJS Command Line",
5
5
  "repository": {
6
6
  "type": "git",
@@ -33,17 +33,17 @@
33
33
  "dependencies": {
34
34
  "@babel/parser": "7.29.7",
35
35
  "@babel/preset-typescript": "7.29.7",
36
- "@cedarjs/api-server": "6.0.0-canary.2623",
37
- "@cedarjs/cli-helpers": "6.0.0-canary.2623",
38
- "@cedarjs/fastify-web": "6.0.0-canary.2623",
39
- "@cedarjs/internal": "6.0.0-canary.2623",
40
- "@cedarjs/prerender": "6.0.0-canary.2623",
41
- "@cedarjs/project-config": "6.0.0-canary.2623",
42
- "@cedarjs/structure": "6.0.0-canary.2623",
43
- "@cedarjs/telemetry": "6.0.0-canary.2623",
44
- "@cedarjs/utils": "6.0.0-canary.2623",
45
- "@cedarjs/vite": "6.0.0-canary.2623",
46
- "@cedarjs/web-server": "6.0.0-canary.2623",
36
+ "@cedarjs/api-server": "6.0.0-canary.2624",
37
+ "@cedarjs/cli-helpers": "6.0.0-canary.2624",
38
+ "@cedarjs/fastify-web": "6.0.0-canary.2624",
39
+ "@cedarjs/internal": "6.0.0-canary.2624",
40
+ "@cedarjs/prerender": "6.0.0-canary.2624",
41
+ "@cedarjs/project-config": "6.0.0-canary.2624",
42
+ "@cedarjs/structure": "6.0.0-canary.2624",
43
+ "@cedarjs/telemetry": "6.0.0-canary.2624",
44
+ "@cedarjs/utils": "6.0.0-canary.2624",
45
+ "@cedarjs/vite": "6.0.0-canary.2624",
46
+ "@cedarjs/web-server": "6.0.0-canary.2624",
47
47
  "@listr2/prompt-adapter-enquirer": "4.2.1",
48
48
  "@opentelemetry/api": "1.9.1",
49
49
  "@opentelemetry/core": "1.30.1",
@@ -1,21 +0,0 @@
1
- import { rgPath } from "@vscode/ripgrep";
2
- import execa from "execa";
3
- const getFilesWithPattern = ({
4
- pattern,
5
- filesToSearch
6
- }) => {
7
- try {
8
- const { stdout } = execa.sync(rgPath, [
9
- "--files-with-matches",
10
- pattern,
11
- ...filesToSearch
12
- ]);
13
- return stdout.toString().split("\n");
14
- } catch {
15
- return [];
16
- }
17
- };
18
- var getFilesWithPattern_default = getFilesWithPattern;
19
- export {
20
- getFilesWithPattern_default as default
21
- };