@midscene/cli 0.8.18-beta-20250107084346.0 → 0.8.18
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/dist/es/index.js +3 -2
- package/dist/lib/index.js +3 -2
- package/package.json +3 -3
package/dist/es/index.js
CHANGED
|
@@ -12137,7 +12137,7 @@ var require_package2 = __commonJS({
|
|
|
12137
12137
|
module.exports = {
|
|
12138
12138
|
name: "@midscene/cli",
|
|
12139
12139
|
description: "An AI-powered automation SDK can control the page, perform assertions, and extract data in JSON format using natural language. See https://midscenejs.com/ for details.",
|
|
12140
|
-
version: "0.8.18
|
|
12140
|
+
version: "0.8.18",
|
|
12141
12141
|
repository: "https://github.com/web-infra-dev/midscene",
|
|
12142
12142
|
homepage: "https://midscenejs.com/",
|
|
12143
12143
|
"jsnext:source": "./src/index.ts",
|
|
@@ -12222,7 +12222,8 @@ function matchYamlFiles(fileGlob) {
|
|
|
12222
12222
|
}
|
|
12223
12223
|
const files = yield glob(fileGlob, {
|
|
12224
12224
|
nodir: true,
|
|
12225
|
-
windowsPathsNoEscape: true
|
|
12225
|
+
windowsPathsNoEscape: true,
|
|
12226
|
+
ignore: ["**/node_modules/**"]
|
|
12226
12227
|
});
|
|
12227
12228
|
return files.filter((file) => file.endsWith(".yml") || file.endsWith(".yaml")).sort();
|
|
12228
12229
|
});
|
package/dist/lib/index.js
CHANGED
|
@@ -5351,7 +5351,7 @@ var require_package2 = __commonJS({
|
|
|
5351
5351
|
module2.exports = {
|
|
5352
5352
|
name: "@midscene/cli",
|
|
5353
5353
|
description: "An AI-powered automation SDK can control the page, perform assertions, and extract data in JSON format using natural language. See https://midscenejs.com/ for details.",
|
|
5354
|
-
version: "0.8.18
|
|
5354
|
+
version: "0.8.18",
|
|
5355
5355
|
repository: "https://github.com/web-infra-dev/midscene",
|
|
5356
5356
|
homepage: "https://midscenejs.com/",
|
|
5357
5357
|
"jsnext:source": "./src/index.ts",
|
|
@@ -12565,7 +12565,8 @@ function matchYamlFiles(fileGlob) {
|
|
|
12565
12565
|
}
|
|
12566
12566
|
const files = yield glob(fileGlob, {
|
|
12567
12567
|
nodir: true,
|
|
12568
|
-
windowsPathsNoEscape: true
|
|
12568
|
+
windowsPathsNoEscape: true,
|
|
12569
|
+
ignore: ["**/node_modules/**"]
|
|
12569
12570
|
});
|
|
12570
12571
|
return files.filter((file) => file.endsWith(".yml") || file.endsWith(".yaml")).sort();
|
|
12571
12572
|
});
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@midscene/cli",
|
|
3
3
|
"description": "An AI-powered automation SDK can control the page, perform assertions, and extract data in JSON format using natural language. See https://midscenejs.com/ for details.",
|
|
4
|
-
"version": "0.8.18
|
|
4
|
+
"version": "0.8.18",
|
|
5
5
|
"repository": "https://github.com/web-infra-dev/midscene",
|
|
6
6
|
"homepage": "https://midscenejs.com/",
|
|
7
7
|
"jsnext:source": "./src/index.ts",
|
|
@@ -17,8 +17,8 @@
|
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"puppeteer": "23.0.2",
|
|
19
19
|
"http-server": "14.1.1",
|
|
20
|
-
"@midscene/core": "0.8.18
|
|
21
|
-
"@midscene/web": "0.8.18
|
|
20
|
+
"@midscene/core": "0.8.18",
|
|
21
|
+
"@midscene/web": "0.8.18"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
24
|
"@modern-js/module-tools": "2.60.6",
|