forked from SynkraAI/aiox-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaiox-validator.js
More file actions
25 lines (22 loc) · 866 Bytes
/
Copy pathaiox-validator.js
File metadata and controls
25 lines (22 loc) · 866 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/**
* AIOX Validator - Re-export from canonical location
*
* @deprecated Use require('../infrastructure/scripts/aiox-validator') directly
* @module utils/aiox-validator
*
* This file re-exports from the canonical location in infrastructure/scripts/
* for backward compatibility with CI workflows.
*
* Migration note:
* - Canonical location: .aiox-core/infrastructure/scripts/aiox-validator.js
* - This file exists for backward compatibility with existing CI workflows
* - New code should import from infrastructure/scripts/aiox-validator directly
*/
'use strict';
// Re-export from canonical location
module.exports = require('../infrastructure/scripts/aiox-validator');
// CLI Interface - delegate to canonical location
if (require.main === module) {
// Pass through to the original script
require('../infrastructure/scripts/aiox-validator');
}