2017-07-20 04:54:07 -04: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
|
|
|
|
*/
|
|
|
|
|
|
|
|
const path = require('path');
|
|
|
|
const fs = require('fs');
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
extract: gulp => done => {
|
|
|
|
if (!fs.existsSync(path.join(__dirname, 'cldr/cldr-data'))) {
|
|
|
|
throw new Error(`You must run "gulp cldr:download" before you can extract the data`);
|
|
|
|
}
|
|
|
|
const extract = require('./cldr/extract');
|
|
|
|
return extract(gulp, done);
|
|
|
|
},
|
|
|
|
|
|
|
|
download: gulp => done => {
|
|
|
|
const cldrDownloader = require('cldr-data-downloader');
|
|
|
|
const cldrDataFolder = path.join(__dirname, 'cldr/cldr-data');
|
|
|
|
if (!fs.existsSync(cldrDataFolder)) {
|
|
|
|
fs.mkdirSync(cldrDataFolder);
|
|
|
|
}
|
|
|
|
cldrDownloader(path.join(__dirname, 'cldr/cldr-urls.json'), cldrDataFolder, done);
|
2017-08-21 13:11:07 -04:00
|
|
|
},
|
|
|
|
|
|
|
|
closure: gulp => done => {
|
|
|
|
const {RELATIVE_I18N_DATA_FOLDER} = require('./cldr/extract');
|
2017-09-22 13:51:03 -04:00
|
|
|
// tslint:disable-next-line:no-console
|
2017-08-21 13:11:07 -04:00
|
|
|
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);
|
|
|
|
},
|
2017-07-20 04:54:07 -04:00
|
|
|
};
|