@aeriajs/cli 0.0.230 → 0.0.232
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/buildAeriaLang.js +1 -1
- package/package.json +2 -2
package/dist/buildAeriaLang.js
CHANGED
|
@@ -6,7 +6,7 @@ export const buildAeriaLangPhase = async () => {
|
|
|
6
6
|
outDir: OUT_DIR,
|
|
7
7
|
});
|
|
8
8
|
if (!result.success) {
|
|
9
|
-
return Result.error(result.errors.map((error) => `\n${error.
|
|
9
|
+
return Result.error(result.errors.map((error) => `\n${error.location.file}:${error.location.line} at column (${error.location.start}-${error.location.end}) - ${error.message}`).join(' | '));
|
|
10
10
|
}
|
|
11
11
|
if (!('emittedFiles' in result)) {
|
|
12
12
|
return Result.result('no aeria schemas to build');
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aeriajs/cli",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.232",
|
|
5
5
|
"description": "",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"module": "dist/index.mjs",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"peerDependencies": {
|
|
43
43
|
"@aeriajs/builtins": "^0.0.260",
|
|
44
44
|
"@aeriajs/common": "^0.0.145",
|
|
45
|
-
"@aeriajs/compiler": "^0.0.
|
|
45
|
+
"@aeriajs/compiler": "^0.0.42",
|
|
46
46
|
"@aeriajs/core": "^0.0.260",
|
|
47
47
|
"@aeriajs/entrypoint": "^0.0.150",
|
|
48
48
|
"@aeriajs/types": "^0.0.127"
|