Update the license headers throughout the repository to reference Google LLC rather than Google Inc, for the required license headers. PR Close #37205
		
			
				
	
	
		
			29 lines
		
	
	
		
			857 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			857 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
/**
 | 
						|
 * @license
 | 
						|
 * Copyright Google LLC 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
 | 
						|
 */
 | 
						|
 | 
						|
const fs = require('fs');
 | 
						|
 | 
						|
module.exports = {
 | 
						|
  extract: gulp => done => {
 | 
						|
    const extract = require('./cldr/extract');
 | 
						|
    return extract(gulp, done);
 | 
						|
  },
 | 
						|
 | 
						|
  closure: gulp => done => {
 | 
						|
    const {RELATIVE_I18N_DATA_FOLDER} = require('./cldr/extract');
 | 
						|
    // tslint:disable-next-line:no-console
 | 
						|
    console.log(RELATIVE_I18N_DATA_FOLDER, fs.existsSync(RELATIVE_I18N_DATA_FOLDER));
 | 
						|
    if (!fs.existsSync(RELATIVE_I18N_DATA_FOLDER)) {
 | 
						|
      throw new Error(
 | 
						|
          `You must run "gulp cldr:extract" before you can create the closure-locale.ts file`);
 | 
						|
    }
 | 
						|
    const localeAll = require('./cldr/closure');
 | 
						|
    return localeAll(gulp, done);
 | 
						|
  },
 | 
						|
};
 |