2020-11-11 15:29:43 +00:00
|
|
|
/**
|
|
|
|
|
* @license
|
|
|
|
|
* Copyright Google LLC All Rights Reserved.
|
|
|
|
|
*
|
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
2024-09-20 15:23:15 +00:00
|
|
|
* found in the LICENSE file at https://angular.dev/license
|
2020-11-11 15:29:43 +00:00
|
|
|
*/
|
2022-03-24 16:58:38 +00:00
|
|
|
|
|
|
|
|
import {fs} from '../test_helpers/get_compliance_tests';
|
|
|
|
|
|
2020-11-11 15:29:43 +00:00
|
|
|
import {generateGoldenPartial} from './generate_golden_partial';
|
|
|
|
|
|
2025-03-17 21:11:16 +00:00
|
|
|
const [testTsconfigPath, outputPath] = process.argv.slice(2);
|
|
|
|
|
generateGoldenPartial(fs.resolve(testTsconfigPath), fs.resolve(outputPath));
|