From 7c256a23905f401ca8d776f78cc5e070c449bd31 Mon Sep 17 00:00:00 2001 From: Alessandro Bellini Date: Thu, 10 Mar 2016 13:19:19 +0100 Subject: [PATCH] legal adjustaments according to new tool name --- antelope.js | 2 +- lib/automation.js | 2 +- lib/automation/collector.js | 2 +- lib/automation/compiler.js | 2 +- lib/automation/provider.dummy-module.js | 2 +- lib/automation/provider.js | 4 ++-- lib/automation/themes.js | 2 +- lib/automation/webpack/config.yves.js | 2 +- lib/automation/webpack/config.zed.js | 2 +- lib/cli.js | 10 +++++----- lib/context.js | 4 ++-- lib/errors.js | 2 +- lib/install.js | 2 +- lib/licenses.js | 2 +- lib/provider.js | 2 +- lib/test.js | 2 +- lib/test/collector.js | 2 +- lib/test/dependency.js | 8 ++++---- lib/test/manifest.js | 2 +- 19 files changed, 28 insertions(+), 28 deletions(-) diff --git a/antelope.js b/antelope.js index 89d727d..7d63a0d 100644 --- a/antelope.js +++ b/antelope.js @@ -1,5 +1,5 @@ /** - * This file is part of SPY frontend automation tool + * This file is part of Antelope frontend automation tool * (c) Spryker Systems GmbH * For full copyright and license information, please view the LICENSE file that was distributed with this source code. */ diff --git a/lib/automation.js b/lib/automation.js index a2d2098..80465cd 100644 --- a/lib/automation.js +++ b/lib/automation.js @@ -1,5 +1,5 @@ /** - * This file is part of SPY frontend automation tool + * This file is part of Antelope frontend automation tool * (c) Spryker Systems GmbH * For full copyright and license information, please view the LICENSE file that was distributed with this source code. */ diff --git a/lib/automation/collector.js b/lib/automation/collector.js index b4161ce..4a39ace 100644 --- a/lib/automation/collector.js +++ b/lib/automation/collector.js @@ -1,5 +1,5 @@ /** - * This file is part of SPY frontend automation tool + * This file is part of Antelope frontend automation tool * (c) Spryker Systems GmbH * For full copyright and license information, please view the LICENSE file that was distributed with this source code. */ diff --git a/lib/automation/compiler.js b/lib/automation/compiler.js index 32fae88..1c9a470 100644 --- a/lib/automation/compiler.js +++ b/lib/automation/compiler.js @@ -1,5 +1,5 @@ /** - * This file is part of SPY frontend automation tool + * This file is part of Antelope frontend automation tool * (c) Spryker Systems GmbH * For full copyright and license information, please view the LICENSE file that was distributed with this source code. */ diff --git a/lib/automation/provider.dummy-module.js b/lib/automation/provider.dummy-module.js index e9d308e..01cc6e7 100644 --- a/lib/automation/provider.dummy-module.js +++ b/lib/automation/provider.dummy-module.js @@ -1,5 +1,5 @@ /** - * This file is part of SPY frontend automation tool + * This file is part of Antelope frontend automation tool * (c) Spryker Systems GmbH * For full copyright and license information, please view the LICENSE file that was distributed with this source code. */ diff --git a/lib/automation/provider.js b/lib/automation/provider.js index 920f0a3..206e7a0 100644 --- a/lib/automation/provider.js +++ b/lib/automation/provider.js @@ -1,5 +1,5 @@ /** - * This file is part of SPY frontend automation tool + * This file is part of Antelope frontend automation tool * (c) Spryker Systems GmbH * For full copyright and license information, please view the LICENSE file that was distributed with this source code. */ @@ -26,7 +26,7 @@ function extendedRequire(id) { return requiredModule; } catch (err) { requiredModule = require(id); - report[id] = 'spy'; + report[id] = 'antelope'; return requiredModule; } } diff --git a/lib/automation/themes.js b/lib/automation/themes.js index 5c40045..478a0d8 100644 --- a/lib/automation/themes.js +++ b/lib/automation/themes.js @@ -1,5 +1,5 @@ /** - * This file is part of SPY frontend automation tool + * This file is part of Antelope frontend automation tool * (c) Spryker Systems GmbH * For full copyright and license information, please view the LICENSE file that was distributed with this source code. */ diff --git a/lib/automation/webpack/config.yves.js b/lib/automation/webpack/config.yves.js index 11156d9..d683e92 100644 --- a/lib/automation/webpack/config.yves.js +++ b/lib/automation/webpack/config.yves.js @@ -1,5 +1,5 @@ /** - * This file is part of SPY frontend automation tool + * This file is part of Antelope frontend automation tool * (c) Spryker Systems GmbH * For full copyright and license information, please view the LICENSE file that was distributed with this source code. */ diff --git a/lib/automation/webpack/config.zed.js b/lib/automation/webpack/config.zed.js index fe27445..ec637d2 100644 --- a/lib/automation/webpack/config.zed.js +++ b/lib/automation/webpack/config.zed.js @@ -1,5 +1,5 @@ /** - * This file is part of SPY frontend automation tool + * This file is part of Antelope frontend automation tool * (c) Spryker Systems GmbH * For full copyright and license information, please view the LICENSE file that was distributed with this source code. */ diff --git a/lib/cli.js b/lib/cli.js index a683c76..d877be2 100644 --- a/lib/cli.js +++ b/lib/cli.js @@ -1,5 +1,5 @@ /** - * This file is part of SPY frontend automation tool + * This file is part of Antelope frontend automation tool * (c) Spryker Systems GmbH * For full copyright and license information, please view the LICENSE file that was distributed with this source code. */ @@ -156,7 +156,7 @@ function runProvider(options) { commander .on('--help', () => { - console.log(` Run 'spy --help' to output command specific usage information`); + console.log(` Run 'antelope --help' to output command specific usage information`); }); commander @@ -189,13 +189,13 @@ commander // .action(runLicensesCrawler) // .on('--help', () => { // console.log(` Follow these tips if you want to to write licenses into a file:`, '\n'); -// console.log(` $ spy licenses --json > json_filename.json`); -// console.log(` $ spy licenses --manifest --csv > csv_filename.csv`, '\n'); +// console.log(` $ antelope licenses --json > json_filename.json`); +// console.log(` $ antelope licenses --manifest --csv > csv_filename.csv`, '\n'); // }); // commander // .command('provider') -// .description('Output all the modules SPY provide internally') +// .description('Output all the modules Antelope provide internally') // .action(runProvider); module.exports = { diff --git a/lib/context.js b/lib/context.js index 28e569f..7855e76 100644 --- a/lib/context.js +++ b/lib/context.js @@ -1,5 +1,5 @@ /** - * This file is part of SPY frontend automation tool + * This file is part of Antelope frontend automation tool * (c) Spryker Systems GmbH * For full copyright and license information, please view the LICENSE file that was distributed with this source code. */ @@ -14,7 +14,7 @@ let options = {}; let args = []; const ENTRY_PATTERN = '.entry.js'; -const EXTENSION_PATTERN = '.spy.js'; +const EXTENSION_PATTERN = '.antelope.js'; const YVES_DEFAULT_PATTERN = 'Yves'; const ZED_DEFAULT_PATTERN = 'Zed'; diff --git a/lib/errors.js b/lib/errors.js index 091a65f..5debbda 100644 --- a/lib/errors.js +++ b/lib/errors.js @@ -1,5 +1,5 @@ /** - * This file is part of SPY frontend automation tool + * This file is part of Antelope frontend automation tool * (c) Spryker Systems GmbH * For full copyright and license information, please view the LICENSE file that was distributed with this source code. */ diff --git a/lib/install.js b/lib/install.js index 4dbc54c..90f2446 100644 --- a/lib/install.js +++ b/lib/install.js @@ -1,5 +1,5 @@ /** - * This file is part of SPY frontend automation tool + * This file is part of Antelope frontend automation tool * (c) Spryker Systems GmbH * For full copyright and license information, please view the LICENSE file that was distributed with this source code. */ diff --git a/lib/licenses.js b/lib/licenses.js index cdc83fa..8a5b4a4 100644 --- a/lib/licenses.js +++ b/lib/licenses.js @@ -1,5 +1,5 @@ /** - * This file is part of SPY frontend automation tool + * This file is part of Antelope frontend automation tool * (c) Spryker Systems GmbH * For full copyright and license information, please view the LICENSE file that was distributed with this source code. */ diff --git a/lib/provider.js b/lib/provider.js index 98ef079..35baf46 100644 --- a/lib/provider.js +++ b/lib/provider.js @@ -1,5 +1,5 @@ /** - * This file is part of SPY frontend automation tool + * This file is part of Antelope frontend automation tool * (c) Spryker Systems GmbH * For full copyright and license information, please view the LICENSE file that was distributed with this source code. */ diff --git a/lib/test.js b/lib/test.js index c2d9e91..09b1de6 100644 --- a/lib/test.js +++ b/lib/test.js @@ -1,5 +1,5 @@ /** - * This file is part of SPY frontend automation tool + * This file is part of Antelope frontend automation tool * (c) Spryker Systems GmbH * For full copyright and license information, please view the LICENSE file that was distributed with this source code. */ diff --git a/lib/test/collector.js b/lib/test/collector.js index 50bf6bc..90e7a12 100644 --- a/lib/test/collector.js +++ b/lib/test/collector.js @@ -1,5 +1,5 @@ /** - * This file is part of SPY frontend automation tool + * This file is part of Antelope frontend automation tool * (c) Spryker Systems GmbH * For full copyright and license information, please view the LICENSE file that was distributed with this source code. */ diff --git a/lib/test/dependency.js b/lib/test/dependency.js index 6069b22..eac6b53 100644 --- a/lib/test/dependency.js +++ b/lib/test/dependency.js @@ -1,5 +1,5 @@ /** - * This file is part of SPY frontend automation tool + * This file is part of Antelope frontend automation tool * (c) Spryker Systems GmbH * For full copyright and license information, please view the LICENSE file that was distributed with this source code. */ @@ -11,7 +11,7 @@ let R = require('ramda'); let context = require('../context'); let errors = require('../errors'); let cwd = process.cwd(); -let spyPkg = require('../../package.json'); +let antelopePkg = require('../../package.json'); function performAnalysis(targetDependencies, projectDependencies) { return R.map((dependencyName) => { @@ -66,8 +66,8 @@ module.exports = { console.log('Custom dependencies will be ignored'.gray); let projectPkg = require(path.join(cwd, './package.json')); - let yvesDependencies = performAnalysis(spyPkg.yvesDependencies, projectPkg.dependencies); - let zedDependencies = performAnalysis(spyPkg.zedDependencies, projectPkg.dependencies); + let yvesDependencies = performAnalysis(antelopePkg.yvesDependencies, projectPkg.dependencies); + let zedDependencies = performAnalysis(antelopePkg.zedDependencies, projectPkg.dependencies); log('YVES', yvesDependencies); log('ZED', zedDependencies); diff --git a/lib/test/manifest.js b/lib/test/manifest.js index 6412e1d..a3a533e 100644 --- a/lib/test/manifest.js +++ b/lib/test/manifest.js @@ -1,5 +1,5 @@ /** - * This file is part of SPY frontend automation tool + * This file is part of Antelope frontend automation tool * (c) Spryker Systems GmbH * For full copyright and license information, please view the LICENSE file that was distributed with this source code. */