2019-11-14 19:56:55 -05:00
|
|
|
#!/usr/bin/env node
|
2020-03-02 12:35:30 -05:00
|
|
|
/**
|
|
|
|
* @license
|
|
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
|
|
* found in the LICENSE file at https://angular.io/license
|
|
|
|
*/
|
2020-02-29 15:25:49 -05:00
|
|
|
|
2019-11-14 19:56:55 -05:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
const {buildTargetPackages} = require('./package-builder');
|
|
|
|
|
|
|
|
|
2020-02-29 15:25:49 -05:00
|
|
|
// Build the ivy packages into `dist/packages-dist-ivy-aot/`.
|
2019-11-22 15:11:48 -05:00
|
|
|
buildTargetPackages('dist/packages-dist-ivy-aot', true, 'Ivy AOT');
|