@stoneforge/quarry 1.0.1 → 1.0.3
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/api/quarry-api.js +1 -1
- package/dist/api/quarry-api.js.map +1 -1
- package/dist/cli/commands/help.d.ts.map +1 -1
- package/dist/cli/commands/help.js +3 -1
- package/dist/cli/commands/help.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/dist/server/index.d.ts +2 -0
- package/dist/server/index.d.ts.map +1 -1
- package/dist/server/index.js +16 -1
- package/dist/server/index.js.map +1 -1
- package/dist/sync/auto-export.d.ts +45 -0
- package/dist/sync/auto-export.d.ts.map +1 -0
- package/dist/sync/auto-export.js +92 -0
- package/dist/sync/auto-export.js.map +1 -0
- package/dist/sync/index.d.ts +1 -0
- package/dist/sync/index.d.ts.map +1 -1
- package/dist/sync/index.js +2 -0
- package/dist/sync/index.js.map +1 -1
- package/dist/sync/service.d.ts.map +1 -1
- package/dist/sync/service.js +15 -1
- package/dist/sync/service.js.map +1 -1
- package/dist/sync/types.d.ts +2 -2
- package/dist/sync/types.d.ts.map +1 -1
- package/package.json +5 -5
package/dist/api/quarry-api.js
CHANGED
|
@@ -3391,7 +3391,7 @@ export class QuarryAPIImpl {
|
|
|
3391
3391
|
details: `Resolved via ${c.resolution}`,
|
|
3392
3392
|
}));
|
|
3393
3393
|
// Convert errors to string format
|
|
3394
|
-
const errors = syncResult.errors.map((e) => `${e.file}
|
|
3394
|
+
const errors = syncResult.errors.map((e) => `${e.file}${e.line != null ? `:${e.line}` : ''}: ${e.message}${e.content ? ` (${e.content.substring(0, 50)}...)` : ''}`);
|
|
3395
3395
|
return {
|
|
3396
3396
|
success: syncResult.errors.length === 0,
|
|
3397
3397
|
elementsImported: syncResult.elementsImported,
|