├── templates └── project │ ├── README.md │ ├── setup-jest.ts │ ├── modules │ ├── core │ │ ├── public_api.ts │ │ ├── src │ │ │ ├── components │ │ │ │ ├── core.component.css │ │ │ │ ├── core.component.html │ │ │ │ ├── core.component.spec.ts │ │ │ │ └── core.component.ts │ │ │ ├── index.ts │ │ │ └── core.module.ts │ │ ├── index.ts │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── rollup.config.js │ │ ├── package.json │ │ └── tsconfig-build.json │ └── feature │ │ ├── README.md │ │ ├── public_api.ts │ │ ├── src │ │ ├── index.ts │ │ └── basket.module.ts │ │ ├── index.ts │ │ ├── CHANGELOG.md │ │ ├── rollup.config.js │ │ ├── package.json │ │ └── tsconfig-build.json │ ├── typings.d.ts │ ├── CHANGELOG.md │ ├── lerna.json │ ├── build │ ├── index.ts │ ├── config.ts │ ├── builder.ts │ ├── inline.ts │ ├── util.ts │ └── tasks.ts │ ├── _editorconfig │ ├── tsconfig.spec.json │ ├── tsconfig.json │ ├── protractor.conf.js │ ├── _gitignore │ ├── _angular-cli.json │ ├── tslint.json │ └── package.json ├── .gitignore ├── typings.d.ts ├── src ├── main.models.ts ├── new.questions.ts ├── index.ts ├── utils.ts └── new.command.ts ├── bin └── ng-multi ├── tsconfig.json ├── CHANGELOG.md ├── tslint.json ├── LICENSE ├── README.md ├── package.json └── yarn.lock /templates/project/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules 3 | -------------------------------------------------------------------------------- /templates/project/setup-jest.ts: -------------------------------------------------------------------------------- 1 | import 'jest-preset-angular'; 2 | -------------------------------------------------------------------------------- /templates/project/modules/core/public_api.ts: -------------------------------------------------------------------------------- 1 | export * from './src/index'; 2 | -------------------------------------------------------------------------------- /templates/project/typings.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'node-sass-tilde-importer'; 2 | -------------------------------------------------------------------------------- /templates/project/modules/feature/README.md: -------------------------------------------------------------------------------- 1 | [SCOPE]/feature 2 | ======= 3 | 4 | -------------------------------------------------------------------------------- /templates/project/modules/feature/public_api.ts: -------------------------------------------------------------------------------- 1 | export * from './src/index'; 2 | -------------------------------------------------------------------------------- /templates/project/modules/core/src/components/core.component.css: -------------------------------------------------------------------------------- 1 | .core { 2 | margin: 0 auto 3 | } 4 | -------------------------------------------------------------------------------- /templates/project/modules/feature/src/index.ts: -------------------------------------------------------------------------------- 1 | export { FeatureModule } from './basket.module'; 2 | -------------------------------------------------------------------------------- /templates/project/modules/core/src/components/core.component.html: -------------------------------------------------------------------------------- 1 |
2 | test 3 |
4 | -------------------------------------------------------------------------------- /typings.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'caporal'; 2 | 3 | declare module '*.json' { 4 | const value: any; 5 | export default value; 6 | } 7 | -------------------------------------------------------------------------------- /templates/project/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelogs 2 | 3 | - [[SCOPE]/core](./modules/core/CHANGELOG.md) 4 | - [[SCOPE]/feature](./modules/feature/CHANGELOG.md) 5 | -------------------------------------------------------------------------------- /templates/project/modules/core/src/index.ts: -------------------------------------------------------------------------------- 1 | export { CoreModule } from './core.module'; 2 | export { CoreComponent } from './components/core.component'; 3 | -------------------------------------------------------------------------------- /src/main.models.ts: -------------------------------------------------------------------------------- 1 | export interface ActionArgs { 2 | name: string; 3 | } 4 | 5 | export interface ActionLogger { 6 | info: any; 7 | error: any; 8 | } 9 | -------------------------------------------------------------------------------- /templates/project/lerna.json: -------------------------------------------------------------------------------- 1 | { 2 | "lerna": "2.2.0", 3 | "packages": [ 4 | "modules/*" 5 | ], 6 | "version": "0.0.0", 7 | "npmClient": "yarn" 8 | } 9 | -------------------------------------------------------------------------------- /templates/project/modules/core/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * DO NOT EDIT 3 | * 4 | * This file is automatically generated at build 5 | */ 6 | 7 | export * from './public_api'; 8 | -------------------------------------------------------------------------------- /bin/ng-multi: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 'use strict'; 3 | 4 | // Provide a title to the process in `ps` 5 | process.title = 'ng-multi'; 6 | 7 | require('../dist/index.js'); 8 | -------------------------------------------------------------------------------- /templates/project/modules/feature/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * DO NOT EDIT 3 | * 4 | * This file is automatically generated at build 5 | */ 6 | 7 | export * from './public_api'; 8 | -------------------------------------------------------------------------------- /templates/project/modules/core/src/components/core.component.spec.ts: -------------------------------------------------------------------------------- 1 | describe('CoreComponent', () => { 2 | it('should succed', () => { 3 | expect(true).toBe(true); 4 | }); 5 | }); 6 | -------------------------------------------------------------------------------- /templates/project/modules/core/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Change Log 2 | 3 | All notable changes to this project will be documented in this file. 4 | See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. 5 | -------------------------------------------------------------------------------- /templates/project/modules/feature/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Change Log 2 | 3 | All notable changes to this project will be documented in this file. 4 | See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. 5 | -------------------------------------------------------------------------------- /templates/project/modules/feature/src/basket.module.ts: -------------------------------------------------------------------------------- 1 | import { NgModule } from '@angular/core'; 2 | import { CoreModule } from '[SCOPE]/core'; 3 | 4 | @NgModule({ 5 | imports: [CoreModule] 6 | }) 7 | export class FeatureModule {} 8 | -------------------------------------------------------------------------------- /templates/project/modules/core/README.md: -------------------------------------------------------------------------------- 1 | @ngrx/store 2 | ======= 3 | 4 | The sources for this package are in the main [ngrx/platform](https://github.com/ngrx/platform) repo. Please file issues and pull requests against that repo. 5 | 6 | License: MIT 7 | -------------------------------------------------------------------------------- /src/new.questions.ts: -------------------------------------------------------------------------------- 1 | const QUESTIONS = [ 2 | { 3 | type: 'input', 4 | name: 'scope', 5 | message: 'Scope of your project eg. @angular', 6 | validate: (value: string) => value && value.indexOf('@') === 0 7 | } 8 | ]; 9 | 10 | export default QUESTIONS; 11 | -------------------------------------------------------------------------------- /templates/project/build/index.ts: -------------------------------------------------------------------------------- 1 | /* tslint:disable */ 2 | 3 | import build from './builder'; 4 | import { packages } from './config'; 5 | 6 | build({ 7 | scope: '[SCOPE]', 8 | packages 9 | }).catch(err => { 10 | console.error(err); 11 | process.exit(1); 12 | }); 13 | -------------------------------------------------------------------------------- /templates/project/modules/core/src/core.module.ts: -------------------------------------------------------------------------------- 1 | import { NgModule } from '@angular/core'; 2 | import { CoreComponent } from './components/core.component'; 3 | 4 | @NgModule({ 5 | declarations: [CoreComponent], 6 | exports: [CoreComponent] 7 | }) 8 | export class CoreModule {} 9 | -------------------------------------------------------------------------------- /templates/project/_editorconfig: -------------------------------------------------------------------------------- 1 | # Editor configuration, see http://editorconfig.org 2 | root = true 3 | 4 | [*] 5 | charset = utf-8 6 | indent_style = space 7 | indent_size = 2 8 | insert_final_newline = true 9 | trim_trailing_whitespace = true 10 | 11 | [*.md] 12 | max_line_length = off 13 | trim_trailing_whitespace = false 14 | -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | import * as prog from 'caporal'; 2 | import * as pkg from '../package.json'; 3 | 4 | import { newCommand } from './new.command'; 5 | 6 | prog 7 | .version((pkg as any).version) 8 | .command('new', 'Create a new project') 9 | .argument('') 10 | .action(newCommand); 11 | 12 | prog.parse(process.argv); 13 | -------------------------------------------------------------------------------- /templates/project/modules/core/rollup.config.js: -------------------------------------------------------------------------------- 1 | export default { 2 | entry: './dist/core/[SCOPE]/core.es5.js', 3 | dest: './dist/core/bundles/core.umd.js', 4 | format: 'umd', 5 | exports: 'named', 6 | moduleName: '[SCOPE_NOAT].core', 7 | globals: { 8 | '@angular/core': 'ng.core', 9 | 'rxjs/Observable': 'Rx' 10 | } 11 | }; 12 | -------------------------------------------------------------------------------- /templates/project/modules/core/src/components/core.component.ts: -------------------------------------------------------------------------------- 1 | import { Component } from '@angular/core'; 2 | 3 | /** 4 | * Popup with transcluded content. 5 | * Please check 'popup-component' in playground, for usage. 6 | */ 7 | @Component({ 8 | selector: 'booking-core', 9 | templateUrl: './core.component.html', 10 | styleUrls: ['./core.component.css'] 11 | }) 12 | export class CoreComponent {} 13 | -------------------------------------------------------------------------------- /templates/project/modules/feature/rollup.config.js: -------------------------------------------------------------------------------- 1 | export default { 2 | entry: './dist/feature/[SCOPE]/feature.es5.js', 3 | dest: './dist/feature/bundles/feature.umd.js', 4 | format: 'umd', 5 | exports: 'named', 6 | moduleName: '[SCOPE_NOAT].feature', 7 | globals: { 8 | '@angular/core': 'ng.core', 9 | '[SCOPE]/core': '[SCOPE_NOAT].core', 10 | 'rxjs/Observable': 'Rx' 11 | } 12 | }; 13 | -------------------------------------------------------------------------------- /templates/project/modules/core/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "[SCOPE]/core", 3 | "version": "0.0.0", 4 | "description": "", 5 | "module": "[SCOPE]/core.es5.js", 6 | "es2015": "[SCOPE]/core.js", 7 | "main": "bundles/core.umd.js", 8 | "typings": "core.d.ts", 9 | "author": "", 10 | "license": "MIT", 11 | "peerDependencies": { 12 | "@angular/core": "^4.0.0", 13 | "rxjs": "^5.0.0" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /templates/project/modules/feature/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "[SCOPE]/feature", 3 | "version": "0.0.0", 4 | "description": "", 5 | "module": "[SCOPE]/feature.es5.js", 6 | "es2015": "[SCOPE]/feature.js", 7 | "main": "bundles/feature.umd.js", 8 | "typings": "feature.d.ts", 9 | "peerDependencies": { 10 | "@angular/core": "^4.0.0", 11 | "[SCOPE]/core": "^0.0.0", 12 | "rxjs": "^5.0.0" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- 1 | import * as fs from 'fs'; 2 | import * as ora from 'ora'; 3 | 4 | export function getPath(template: string): string { 5 | return `${__dirname}/../templates/${template}`; 6 | } 7 | 8 | export async function execTask(title: string, task: any) { 9 | const spinner = ora(title); 10 | try { 11 | spinner.start(); 12 | 13 | await task(); 14 | 15 | spinner.succeed(); 16 | } catch (e) { 17 | console.error('\n' + e); 18 | spinner.fail(); 19 | process.exit(1); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /templates/project/build/config.ts: -------------------------------------------------------------------------------- 1 | /* tslint:disable */ 2 | 3 | export interface PackageDescription { 4 | name: string; 5 | hasTestingModule: boolean; 6 | } 7 | 8 | export interface Config { 9 | packages: PackageDescription[]; 10 | scope: string; 11 | } 12 | 13 | // The order is important for managing dependencies 14 | export const packages: PackageDescription[] = [ 15 | { 16 | name: 'core', 17 | hasTestingModule: false 18 | }, 19 | { 20 | name: 'feature', 21 | hasTestingModule: false 22 | } 23 | ]; 24 | -------------------------------------------------------------------------------- /templates/project/tsconfig.spec.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "sourceMap": true, 4 | "declaration": false, 5 | "moduleResolution": "node", 6 | "emitDecoratorMetadata": true, 7 | "experimentalDecorators": true, 8 | "lib": [ 9 | "es2016", 10 | "dom" 11 | ], 12 | "outDir": "out-tsc/spec", 13 | "module": "commonjs", 14 | "target": "es6", 15 | "types": [ 16 | "jasmine", 17 | "node", 18 | "jest" 19 | ], 20 | "baseUrl": ".", 21 | "rootDir": "." 22 | }, 23 | "files": [ 24 | "test.ts" 25 | ], 26 | "include": [ 27 | "**/*.spec.ts" 28 | ] 29 | } 30 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compileOnSave": false, 3 | "compilerOptions": { 4 | "outDir": "./dist", 5 | "sourceMap": false, 6 | "declaration": true, 7 | "moduleResolution": "node", 8 | "emitDecoratorMetadata": true, 9 | "experimentalDecorators": true, 10 | "noStrictGenericChecks": true, 11 | "noImplicitAny": true, 12 | "noImplicitReturns": true, 13 | "target": "es5", 14 | "typeRoots": [ 15 | "node_modules/@types" 16 | ], 17 | "lib": [ 18 | "es2017" 19 | ] 20 | }, 21 | "exclude": [ 22 | "node_modules", 23 | "templates/**/*" 24 | ], 25 | "files": [ 26 | "src/index.ts", 27 | "typings.d.ts" 28 | ] 29 | } 30 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Change Log 2 | 3 | All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. 4 | 5 | 6 | ## [0.0.3](https://github.com/Ryanair/angular-multimodule-cli/compare/v0.0.2...v0.0.3) (2017-12-14) 7 | 8 | 9 | ### Bug Fixes 10 | 11 | * **build:** Upgrade to angular5 and new uglifyjs ([4e1a377](https://github.com/Ryanair/angular-multimodule-cli/commit/4e1a377)) 12 | 13 | 14 | 15 | 16 | ## 0.0.2 (2017-11-23) 17 | 18 | 19 | ### Bug Fixes 20 | 21 | * **dotfiles:** Renamed dotfiles in order to be copied ([a1417f5](https://github.com/Ryanair/angular-multimodule-cli/commit/a1417f5)) 22 | 23 | 24 | 25 | 26 | ## 0.0.1 (2017-10-05) 27 | -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": [ 3 | "tslint:recommended", 4 | "tslint-config-prettier" 5 | ], 6 | "rules": { 7 | "no-console": false, 8 | "trailing-comma": [false, {"multiline": "always", "singleline": "never"}], 9 | "interface-name": [false, "always-prefix"], 10 | "no-forward-ref": false, 11 | "max-line-length": [ 12 | true, 13 | 100 14 | ], 15 | "no-string-literal": false, 16 | "no-use-before-declare": true, 17 | "object-literal-sort-keys": false, 18 | "ordered-imports": true, 19 | "quotemark": [ 20 | true, 21 | "single", 22 | "avoid-escape" 23 | ], 24 | "variable-name": [ 25 | true, 26 | "allow-leading-underscore", 27 | "allow-pascal-case", 28 | "ban-keywords", 29 | "check-format" 30 | ] 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /templates/project/modules/core/tsconfig-build.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "baseUrl": ".", 4 | "declaration": true, 5 | "stripInternal": true, 6 | "experimentalDecorators": true, 7 | "module": "es2015", 8 | "moduleResolution": "node", 9 | "outDir": "../../dist/packages/core", 10 | "paths": { }, 11 | "rootDir": ".", 12 | "sourceMap": true, 13 | "inlineSources": true, 14 | "target": "es2015", 15 | "lib": ["es2015", "dom"], 16 | "skipLibCheck": true, 17 | "strict": true 18 | }, 19 | "files": [ 20 | "public_api.ts" 21 | ], 22 | "angularCompilerOptions": { 23 | "annotateForClosureCompiler": true, 24 | "skipTemplateCodegen": true, 25 | "strictMetadataEmit": true, 26 | "flatModuleOutFile": "index.js", 27 | "flatModuleId": "[SCOPE]/core" 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /templates/project/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "sourceMap": true, 4 | "declaration": false, 5 | "moduleResolution": "node", 6 | "emitDecoratorMetadata": true, 7 | "experimentalDecorators": true, 8 | "noStrictGenericChecks": true, 9 | "lib": [ 10 | "es2016", 11 | "dom" 12 | ], 13 | "outDir": "../out-tsc/app", 14 | "target": "es5", 15 | "module": "commonjs", 16 | "baseUrl": "", 17 | "rootDir": "./", 18 | "strict": true, 19 | "paths": { 20 | "core": [ 21 | "./modules/core" 22 | ], 23 | "feature": [ 24 | "./modules/feature" 25 | ] 26 | } 27 | }, 28 | "exclude": [ 29 | "node_modules", 30 | "**/*/node_modules", 31 | "build/**" 32 | ], 33 | "compileOnSave": false, 34 | "buildOnSave": false, 35 | "atom": { 36 | "rewriteTsconfig": false 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /templates/project/protractor.conf.js: -------------------------------------------------------------------------------- 1 | // Protractor configuration file, see link for more information 2 | // https://github.com/angular/protractor/blob/master/lib/config.ts 3 | 4 | const { SpecReporter } = require('jasmine-spec-reporter'); 5 | 6 | exports.config = { 7 | allScriptsTimeout: 11000, 8 | specs: ['./e2e/**/*.e2e-spec.ts'], 9 | capabilities: { 10 | browserName: 'chrome' 11 | }, 12 | directConnect: true, 13 | baseUrl: 'http://localhost:4200/', 14 | framework: 'jasmine', 15 | jasmineNodeOpts: { 16 | showColors: true, 17 | defaultTimeoutInterval: 30000, 18 | print: function() {} 19 | }, 20 | beforeLaunch: function() { 21 | require('ts-node').register({ 22 | project: 'e2e/tsconfig.e2e.json' 23 | }); 24 | }, 25 | onPrepare() { 26 | jasmine 27 | .getEnv() 28 | .addReporter(new SpecReporter({ spec: { displayStacktrace: true } })); 29 | } 30 | }; 31 | -------------------------------------------------------------------------------- /templates/project/modules/feature/tsconfig-build.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "baseUrl": ".", 4 | "declaration": true, 5 | "stripInternal": true, 6 | "emitDecoratorMetadata": true, 7 | "experimentalDecorators": true, 8 | "module": "es2015", 9 | "moduleResolution": "node", 10 | "noEmitOnError": false, 11 | "noImplicitAny": true, 12 | "noImplicitReturns": true, 13 | "outDir": "../../dist/packages/feature", 14 | "paths": { 15 | "[SCOPE]/core": ["../../dist/packages/core"] 16 | }, 17 | "rootDir": ".", 18 | "sourceMap": true, 19 | "inlineSources": true, 20 | "lib": ["es2015", "dom"], 21 | "target": "es2015", 22 | "skipLibCheck": true 23 | }, 24 | "files": [ 25 | "public_api.ts" 26 | ], 27 | "angularCompilerOptions": { 28 | "annotateForClosureCompiler": true, 29 | "strictMetadataEmit": true, 30 | "flatModuleOutFile": "index.js", 31 | "flatModuleId": "[SCOPE]/feature" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017-present, Ryanair Labs Ltd 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /templates/project/build/builder.ts: -------------------------------------------------------------------------------- 1 | /* tslint:disable */ 2 | 3 | import * as tasks from './tasks'; 4 | import { createBuilder } from './util'; 5 | 6 | export default createBuilder([ 7 | ['Removing "./dist" Folder', tasks.removeFolder('./dist')], 8 | ['Removing "./.tmp" Folder', tasks.removeFolder('./.tmp')], 9 | ['Copying files', tasks.copySources], 10 | ['Inline resources', tasks.inlineResources], 11 | ['Compiling packages with NGC', tasks.compilePackagesWithNgc], 12 | ['Bundling FESMs', tasks.bundleFesms], 13 | ['Down-leveling FESMs to ES5', tasks.downLevelFesmsToES5], 14 | ['Creating UMD Bundles', tasks.createUmdBundles], 15 | ['Renaming package entry files', tasks.renamePackageEntryFiles], 16 | ['Cleaning TypeScript files', tasks.cleanTypeScriptFiles], 17 | ['Removing remaining sourcemap files', tasks.removeRemainingSourceMapFiles], 18 | ['Copying type definition files', tasks.copyTypeDefinitionFiles], 19 | ['Minifying UMD bundles', tasks.minifyUmdBundles], 20 | ['Copying documents', tasks.copyDocs], 21 | ['Copying package.json files', tasks.copyPackageJsonFiles], 22 | ['Removing "./dist/packages" Folder', tasks.removePackagesFolder] 23 | ]); 24 | -------------------------------------------------------------------------------- /templates/project/_gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | .nyc 5 | .nyc_output 6 | 7 | # Runtime data 8 | pids 9 | *.pid 10 | *.seed 11 | 12 | # Directory for instrumented libs generated by jscoverage/JSCover 13 | lib-cov 14 | 15 | # Coverage directory used by tools like istanbul 16 | coverage 17 | 18 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 19 | .grunt 20 | 21 | # Compiled binary addons (http://nodejs.org/api/addons.html) 22 | build/Release 23 | 24 | # Users Environment Variables 25 | .lock-wscript 26 | 27 | # OS generated files # 28 | .DS_Store 29 | ehthumbs.db 30 | Icon? 31 | Thumbs.db 32 | 33 | # Node Files # 34 | node_modules 35 | /bower_components 36 | 37 | # Typing TSD # 38 | /src/typings/tsd/ 39 | /typings/ 40 | /tsd_typings/ 41 | 42 | # Dist # 43 | /dist 44 | /public/__build__/ 45 | /src/*/__build__/ 46 | __build__/** 47 | .webpack.json 48 | 49 | #doc 50 | /doc 51 | 52 | # IDE # 53 | .idea/ 54 | *.swp 55 | !/typings/custom.d.ts 56 | .vscode/ 57 | 58 | # Build Artifacts # 59 | release 60 | dist 61 | /node_modules/ 62 | lerna-debug.log 63 | /lib/ 64 | ngfactory 65 | output 66 | *.ngsummary.json 67 | *.ngfactory.ts 68 | tmp 69 | .tmp 70 | -------------------------------------------------------------------------------- /templates/project/_angular-cli.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "./node_modules/@angular/cli/lib/config/schema.json", 3 | "project": { 4 | "name": "playground" 5 | }, 6 | "apps": [ 7 | { 8 | "root": "playground", 9 | "outDir": "playground-dist", 10 | "assets": [ 11 | "assets", 12 | "favicon.ico" 13 | ], 14 | "index": "index.html", 15 | "main": "main.ts", 16 | "polyfills": "polyfills.ts", 17 | "tsconfig": "tsconfig.app.json", 18 | "prefix": "bc", 19 | "styles": [ 20 | "styles.css" 21 | ], 22 | "scripts": [], 23 | "environmentSource": "environments/environment.ts", 24 | "environments": { 25 | "dev": "environments/environment.ts", 26 | "prod": "environments/environment.prod.ts" 27 | } 28 | } 29 | ], 30 | "e2e": { 31 | "protractor": { 32 | "config": "./protractor.conf.js" 33 | } 34 | }, 35 | "lint": [ 36 | { 37 | "project": "playground/tsconfig.app.json" 38 | }, 39 | { 40 | "project": "playground/tsconfig.spec.json" 41 | }, 42 | { 43 | "project": "e2e/tsconfig.e2e.json" 44 | } 45 | ], 46 | "defaults": { 47 | "styleExt": "css", 48 | "component": { 49 | "inlineStyle": true, 50 | "inlineTemplate": true, 51 | "flat": true, 52 | "spec": false 53 | } 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | angular-multimodule-cli will help you create and maintain multiple 2 | npm modules in a single repository. 3 | 4 | Why you should use this cli? https://izifortune.com/managing-modules-with-angular/ 5 | 6 | Based upon [@ngrx/platform](https://github.com/ngrx/platform) build system. 7 | 8 | ## Installation 9 | 10 | ```bash 11 | $ npm i -g angular-multimodule-cli 12 | ``` 13 | 14 | ## Get started 15 | 16 | ```bash 17 | $ ng-multi new my-project 18 | $ cd my-project 19 | $ yarn 20 | $ yarn bootstrap 21 | ``` 22 | 23 | This will create a new project, install all the dependencies and link all the 24 | modules together 25 | 26 | ## Batteries 27 | 28 | * [lerna](https://github.com/lerna/lerna) to manage multiple modules. 29 | * [lint-staged](https://github.com/okonet/lint-staged) linting with tslint and stylelint on staged files. 30 | * [prettier](https://github.com/prettier/prettier) code formatter. 31 | * [jest](https://github.com/facebook/jest) unit test framework. 32 | * [commitizen](https://commitizen.github.io/cz-cli/) simple commit conventions for internet citizens. 33 | 34 | ### Angular modules 35 | 36 | * Support for css/scss style inline 37 | * Support for html templates inline 38 | 39 | ## TODO 40 | 41 | * [ ] Choose package manager ( default is yarn ) 42 | * [ ] Create a playground ( maybe based on angularplayground ) 43 | * [ ] Improve README 44 | * [ ] Ask for modules to create at the start 45 | * [ ] Add command to create a module on already created project 46 | * [ ] Add unit tests 47 | * [ ] Ask for author 48 | * [ ] Docs generation 49 | -------------------------------------------------------------------------------- /templates/project/tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": [ 3 | "tslint:recommended", 4 | "tslint-config-prettier" 5 | ], 6 | "rulesDirectory": [ 7 | "node_modules/codelyzer" 8 | ], 9 | "rules": { 10 | "trailing-comma": [false, {"multiline": "always", "singleline": "never"}], 11 | "interface-name": [false, "always-prefix"], 12 | "component-class-suffix": true, 13 | "directive-class-suffix": true, 14 | "import-destructuring-spacing": true, 15 | "invoke-injectable": true, 16 | "no-access-missing-member": true, 17 | "no-attribute-parameter-decorator": true, 18 | "no-forward-ref": false, 19 | "no-input-rename": true, 20 | "no-output-rename": true, 21 | "pipe-naming": [true, "camelCase", "my"], 22 | "templates-use-public": true, 23 | "use-host-property-decorator": true, 24 | "use-input-property-decorator": true, 25 | "use-life-cycle-interface": true, 26 | "use-output-property-decorator": true, 27 | "use-pipe-transform-interface": true, 28 | "no-console": [true, 29 | "time", 30 | "timeEnd", 31 | "trace" 32 | ], 33 | "max-classes-per-file": [ 34 | false 35 | ], 36 | "max-line-length": [ 37 | true, 38 | 100 39 | ], 40 | "no-string-literal": false, 41 | "no-use-before-declare": true, 42 | "object-literal-sort-keys": false, 43 | "ordered-imports": true, 44 | "quotemark": [ 45 | true, 46 | "single", 47 | "avoid-escape" 48 | ], 49 | "variable-name": [ 50 | true, 51 | "allow-leading-underscore", 52 | "allow-pascal-case", 53 | "ban-keywords", 54 | "check-format" 55 | ] 56 | } 57 | } 58 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "angular-multimodule-cli", 3 | "version": "0.0.3", 4 | "main": "dist/index.js", 5 | "license": "MIT", 6 | "author": "Ryanair DAC Developers", 7 | "bin": { 8 | "ng-multi": "./bin/ng-multi" 9 | }, 10 | "scripts": { 11 | "cz": "git-cz", 12 | "prebuild": "rimraf ./dist", 13 | "build": "tsc", 14 | "precommit": "lint-staged", 15 | "lint": "tslint --type-check --project tsconfig.json", 16 | "release": "standard-version" 17 | }, 18 | "dependencies": { 19 | "caporal": "^0.10.0", 20 | "fs-extra": "^4.0.2", 21 | "inquirer": "^3.3.0", 22 | "ora": "^1.3.0" 23 | }, 24 | "devDependencies": { 25 | "@types/fs-extra": "^4.0.2", 26 | "@types/inquirer": "^0.0.35", 27 | "@types/node": "^8.0.31", 28 | "@types/ora": "^1.3.1", 29 | "commitizen": "^3.0.2", 30 | "cz-conventional-changelog": "^2.0.0", 31 | "husky": "^0.14.3", 32 | "lint-staged": "^4.2.3", 33 | "prettier": "^1.7.4", 34 | "rimraf": "^2.6.2", 35 | "standard-version": "^4.2.0", 36 | "tslint": "^5.7.0", 37 | "tslint-config-prettier": "^1.5.0", 38 | "typescript": "^2.5.3" 39 | }, 40 | "lint-staged": { 41 | "*.ts": [ 42 | "prettier --single-quote --write", 43 | "git add" 44 | ] 45 | }, 46 | "engines": { 47 | "node": ">= 8.0.0", 48 | "npm": ">= 3.0.0" 49 | }, 50 | "repository": { 51 | "type": "git", 52 | "url": "https://github.com/Ryanair/angular-multimodule-cli.git" 53 | }, 54 | "bugs": { 55 | "url": "https://github.com/Ryanair/angular-multimodule-cli/issues" 56 | }, 57 | "config": { 58 | "commitizen": { 59 | "path": "./node_modules/cz-conventional-changelog" 60 | } 61 | } 62 | } 63 | -------------------------------------------------------------------------------- /src/new.command.ts: -------------------------------------------------------------------------------- 1 | import { 2 | copy, 3 | ensureDir, 4 | move, 5 | readFile, 6 | readJSON, 7 | writeFile, 8 | writeJson 9 | } from 'fs-extra'; 10 | import * as inquirer from 'inquirer'; 11 | import { join } from 'path'; 12 | 13 | import { ActionArgs, ActionLogger } from './main.models'; 14 | import QUESTIONS from './new.questions'; 15 | import { execTask } from './utils'; 16 | 17 | const TEMPLATE_VARS = ['\\[SCOPE\\]', '\\[SCOPE_NOAT\\]', '\\[NAME\\]']; 18 | 19 | const TEMPLATE_FILES = [ 20 | 'package.json', 21 | 'build/index.ts', 22 | 'CHANGELOG.md', 23 | 'modules/core/package.json', 24 | 'modules/core/README.md', 25 | 'modules/core/rollup.config.js', 26 | 'modules/core/tsconfig-build.json', 27 | 'modules/feature/package.json', 28 | 'modules/feature/README.md', 29 | 'modules/feature/rollup.config.js', 30 | 'modules/feature/tsconfig-build.json', 31 | 'modules/feature/src/basket.module.ts' 32 | ]; 33 | 34 | const DOT_FILES = ['_angular-cli.json', '_editorconfig', '_gitignore']; 35 | 36 | /** 37 | * Replace occurencies of the KEY with the value passed 38 | */ 39 | async function replace(filePath: string, KEY: string, value: string) { 40 | const index = await readFile(filePath, 'utf8'); 41 | const regex = new RegExp(`${KEY}`, 'g'); 42 | const res = index.replace(regex, value); 43 | return writeFile(filePath, res); 44 | } 45 | 46 | async function renameDotFiles(basePath: string) { 47 | return Promise.all( 48 | DOT_FILES.map(file => 49 | move(join(basePath, file), join(basePath, file.replace('_', '.'))) 50 | ) 51 | ); 52 | } 53 | 54 | /** 55 | * Replace occurencies of all the TEMPLATE_VARS inside a file 56 | * with the matching values passed. 57 | */ 58 | async function replaceForFile(filePath: string, values: string[]) { 59 | return TEMPLATE_VARS.reduce( 60 | (promise, key, index) => 61 | promise.then(() => replace(filePath, key, values[index])), 62 | Promise.resolve() 63 | ); 64 | } 65 | 66 | export async function newCommand( 67 | args: ActionArgs, 68 | options: {}, 69 | logger: ActionLogger 70 | ) { 71 | await execTask(`Create directory ${args.name}`, () => ensureDir(args.name)); 72 | 73 | await execTask(`Copy files into ${args.name}`, () => 74 | copy(`${__dirname}/../templates/project`, args.name) 75 | ); 76 | 77 | const answers = await inquirer.prompt(QUESTIONS); 78 | 79 | const values = [answers.scope, answers.scope.replace('@', ''), args.name]; 80 | 81 | await renameDotFiles(args.name); 82 | 83 | await execTask('Replace templates', () => 84 | Promise.all( 85 | TEMPLATE_FILES.map(file => replaceForFile(join(args.name, file), values)) 86 | ) 87 | ); 88 | } 89 | -------------------------------------------------------------------------------- /templates/project/build/inline.ts: -------------------------------------------------------------------------------- 1 | /* tslint:disable */ 2 | 3 | import * as util from './util'; 4 | import { readFileSync } from 'fs'; 5 | import * as sass from 'node-sass'; 6 | import * as tildeImporter from 'node-sass-tilde-importer'; 7 | import * as autoprefixer from 'autoprefixer'; 8 | import * as postcss from 'postcss'; 9 | 10 | /** 11 | * Inline resources from a string content. 12 | * @param content {string} The source file's content. 13 | * @param urlResolver {Function} A resolver that takes a URL and return a path. 14 | * @returns {string} The content with resources inlined. 15 | */ 16 | export function inlineResourcesFromString( 17 | content: string, 18 | urlResolver: any 19 | ): string { 20 | // Curry through the inlining functions. 21 | return [inlineTemplate, inlineStyle, removeModuleId].reduce( 22 | (content, fn) => fn(content, urlResolver), 23 | content 24 | ); 25 | } 26 | 27 | /** 28 | * Inline the templates for a source file. Simply search for instances of `templateUrl: ...` and 29 | * replace with `template: ...` (with the content of the file included). 30 | * @param content {string} The source file's content. 31 | * @param urlResolver {Function} A resolver that takes a URL and return a path. 32 | * @return {string} The content with all templates inlined. 33 | */ 34 | export function inlineTemplate(content: string, urlResolver: any): string { 35 | return content.replace(/templateUrl:\s*'([^']+?\.html)'/g, function( 36 | m, 37 | templateUrl 38 | ) { 39 | const templateFile = urlResolver(templateUrl); 40 | const templateContent = readFileSync(templateFile, 'utf-8'); 41 | const shortenedTemplate = templateContent 42 | .replace(/([\n\r]\s*)+/gm, ' ') 43 | .replace(/"/g, '\\"'); 44 | return `template: "${shortenedTemplate}"`; 45 | }); 46 | } 47 | 48 | /** 49 | * Inline the styles for a source file. Simply search for instances of `styleUrls: [...]` and 50 | * replace with `styles: [...]` (with the content of the file included). 51 | * @param urlResolver {Function} A resolver that takes a URL and return a path. 52 | * @param content {string} The source file's content. 53 | * @return {string} The content with all styles inlined. 54 | */ 55 | export function inlineStyle(content: string, urlResolver: any): string { 56 | return content.replace(/styleUrls\s*:\s*(\[[\s\S]*?\])/gm, function( 57 | m, 58 | styleUrls 59 | ) { 60 | const urls = eval(styleUrls); 61 | return ( 62 | 'styles: [' + 63 | urls 64 | .map((styleUrl: string) => { 65 | const styleFile = urlResolver(styleUrl); 66 | const originContent = readFileSync(styleFile, 'utf-8'); 67 | const styleContent = originContent; 68 | // const styleContent = styleFile.endsWith('.scss') 69 | // ? buildSass(originContent, styleFile) 70 | // : originContent; 71 | const shortenedStyle = styleContent 72 | .replace(/([\n\r]\s*)+/gm, ' ') 73 | .replace(/"/g, '\\"'); 74 | return `"${shortenedStyle}"`; 75 | }) 76 | .join(',\n') + 77 | ']' 78 | ); 79 | }); 80 | } 81 | 82 | /** 83 | * build sass content to css 84 | * @param content {string} the css content 85 | * @param sourceFile {string} the scss file sourceFile 86 | * @return {string} the generated css, empty string if error occured 87 | */ 88 | export function buildSass(content: string, sourceFile: string) { 89 | try { 90 | const result = sass.renderSync({ 91 | data: content, 92 | file: sourceFile, 93 | importer: tildeImporter 94 | }); 95 | return postcss([ 96 | autoprefixer({ browsers: ['> 1%', 'last 2 versions'] }) 97 | ] as any).process(result.css.toString()).css; 98 | } catch (e) { 99 | console.error('\x1b[41m'); 100 | console.error('at ' + sourceFile + ':' + e.line + ':' + e.column); 101 | console.error(e.formatted); 102 | console.error('\x1b[0m'); 103 | return ''; 104 | } 105 | } 106 | 107 | /** 108 | * Remove every mention of `moduleId: module.id`. 109 | * @param content {string} The source file's content. 110 | * @returns {string} The content with all moduleId: mentions removed. 111 | */ 112 | export function removeModuleId(content: string): string { 113 | return content.replace(/\s*moduleId:\s*module\.id\s*,?\s*/gm, ''); 114 | } 115 | -------------------------------------------------------------------------------- /templates/project/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "[SCOPE]/[NAME]", 3 | "version": "0.0.0", 4 | "description": "", 5 | "scripts": { 6 | "bootstrap": "lerna bootstrap", 7 | "build": "ts-node ./build/index.ts", 8 | "postbuild": "rimraf dist/**/*.ngsummary.json dist/**/src/*.ngsummary.json", 9 | "precommit": "lint-staged", 10 | "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0", 11 | "ci": "yarn run test:coverage && yarn lint && yarn stylelint && yarn run build", 12 | "clean": "git clean -xdf && yarn && yarn run bootstrap", 13 | "cz": "git cz", 14 | "lint": "tslint -e \\**/node_modules/**\\ --type-check --project tsconfig.json", 15 | "prettier": "prettier --parser typescript --single-quote --trailing-comma es5 --write \"./modules/**/*.ts\"", 16 | "release": "lerna publish --skip-npm --conventional-commits && npm run build", 17 | "stylelint": "stylelint modules/**/*.scss", 18 | "test": "jest", 19 | "test:coverage": "jest --coverage", 20 | "test:watch": "jest --watch" 21 | }, 22 | "lint-staged": { 23 | "*.ts": [ 24 | "tslint", 25 | "prettier --single-quote --write", 26 | "git add" 27 | ], 28 | "*.scss": [ 29 | "stylelint" 30 | ] 31 | }, 32 | "keywords": [ 33 | "angular" 34 | ], 35 | "author": "", 36 | "license": "MIT", 37 | "repository": {}, 38 | "config": { 39 | "commitizen": { 40 | "path": "./node_modules/cz-conventional-changelog" 41 | } 42 | }, 43 | "devDependencies": { 44 | "@angular/animations": "^5.0.0", 45 | "@angular/common": "^5.0.0", 46 | "@angular/compiler": "^5.0.0", 47 | "@angular/compiler-cli": "^5.0.0", 48 | "@angular/core": "^5.0.0", 49 | "@angular/forms": "^5.0.0", 50 | "@angular/http": "^5.0.0", 51 | "@angular/platform-browser": "^5.0.0", 52 | "@angular/platform-browser-dynamic": "^5.0.0", 53 | "@angular/platform-server": "^5.0.0", 54 | "@angular/router": "^5.0.0", 55 | "@types/autoprefixer": "^6.7.3", 56 | "@types/fs-extra": "^4.0.2", 57 | "@types/glob": "^5.0.32", 58 | "@types/jest": "^21.1.1", 59 | "@types/node": "^8.0.31", 60 | "@types/node-sass": "^3.10.32", 61 | "@types/ora": "^1.3.1", 62 | "@types/rimraf": "^2.0.2", 63 | "autoprefixer": "^7.1.4", 64 | "codelyzer": "^3.2.0", 65 | "commitizen": "^2.9.6", 66 | "conventional-changelog": "^1.1.5", 67 | "core-js": "^2.5.1", 68 | "cpy-cli": "^1.0.1", 69 | "cz-conventional-changelog": "^2.0.0", 70 | "deep-freeze": "^0.0.1", 71 | "fs-extra": "^4.0.2", 72 | "glob": "^7.1.2", 73 | "hammerjs": "^2.0.8", 74 | "husky": "^0.14.3", 75 | "jest": "^21.1.0", 76 | "jest-preset-angular": "^3.0.2", 77 | "jest-zone-patch": "^0.0.8", 78 | "lerna": "^2.2.0", 79 | "lint-staged": "^4.2.3", 80 | "module-alias": "^2.0.1", 81 | "ncp": "^2.0.0", 82 | "node-sass": "^4.5.3", 83 | "node-sass-tilde-importer": "^1.0.0", 84 | "ora": "^1.3.0", 85 | "postcss": "^6.0.12", 86 | "prettier": "^1.7.0", 87 | "protractor": "~5.1.2", 88 | "reflect-metadata": "^0.1.10", 89 | "rimraf": "^2.6.2", 90 | "rollup": "^0.50.0", 91 | "rxjs": "^5.4.3", 92 | "sorcery": "^0.10.0", 93 | "stylelint": "^8.1.1", 94 | "stylelint-config-standard": "^17.0.0", 95 | "stylelint-order": "^0.7.0", 96 | "stylelint-selector-bem-pattern": "^2.0.0", 97 | "ts-node": "^3.3.0", 98 | "tslib": "1.7.1", 99 | "tslint": "^5.7.0", 100 | "tslint-config-prettier": "^1.5.0", 101 | "typescript": "^2.5.2", 102 | "uglify-js": "^3.1.9", 103 | "zone.js": "^0.8.17" 104 | }, 105 | "dependencies": { 106 | "@angular/cdk": "^2.0.0-beta.11", 107 | "@types/ncp": "^2.0.1" 108 | }, 109 | "jest": { 110 | "setupTestFrameworkScriptFile": "/setup-jest.ts", 111 | "globals": { 112 | "ts-jest": { 113 | "tsConfigFile": "tsconfig.spec.json" 114 | }, 115 | "__TRANSFORM_HTML__": true 116 | }, 117 | "transform": { 118 | "^.+\\.(ts|js|html)$": "/node_modules/jest-preset-angular/preprocessor.js" 119 | }, 120 | "testMatch": [ 121 | "**/*.spec.ts" 122 | ], 123 | "moduleFileExtensions": [ 124 | "ts", 125 | "js", 126 | "html", 127 | "json" 128 | ], 129 | "mapCoverage": true, 130 | "coveragePathIgnorePatterns": [ 131 | "/node_modules/" 132 | ], 133 | "moduleNameMapper": { 134 | "^@ngrx/(?!db)(.*)": "/modules/$1" 135 | }, 136 | "transformIgnorePatterns": [ 137 | "node_modules/(?!@ngrx)" 138 | ], 139 | "modulePathIgnorePatterns": [ 140 | "dist", 141 | ".tmp" 142 | ], 143 | "collectCoverageFrom": [ 144 | "modules/**/*.ts", 145 | "!modules/**/index.ts", 146 | "!modules/**/public_api.ts", 147 | "!modules/**/*.module.ts" 148 | ] 149 | }, 150 | "engines": { 151 | "node": ">=8.6.0", 152 | "npm": ">=5.3.0", 153 | "yarn": ">=1.1.0 <2.0.0" 154 | } 155 | } 156 | -------------------------------------------------------------------------------- /templates/project/build/util.ts: -------------------------------------------------------------------------------- 1 | /* tslint:disable */ 2 | 3 | import * as fs from 'fs'; 4 | import * as cp from 'child_process'; 5 | import * as glob from 'glob'; 6 | import * as fsExtra from 'fs-extra'; 7 | import * as path from 'path'; 8 | import * as rimraf from 'rimraf'; 9 | import { Config } from './config'; 10 | 11 | export type RunnerFn = (config: Config) => Promise; 12 | export type TaskDef = [string, RunnerFn]; 13 | export type BaseFn = (command: string) => string; 14 | 15 | export function copy(target: string, destination: string): Promise { 16 | return new Promise((resolve, reject) => { 17 | fsExtra.copy(target, destination, err => { 18 | if (err) return reject(err); 19 | resolve(); 20 | }); 21 | }); 22 | } 23 | 24 | export function remove(target: string): Promise { 25 | return new Promise((resolve, reject) => { 26 | fsExtra.remove(target, err => { 27 | if (err) return reject(err); 28 | resolve(); 29 | }); 30 | }); 31 | } 32 | 33 | export function writeFile(target: string, contents: string) { 34 | return new Promise((resolve, reject) => { 35 | fs.writeFile(target, contents, err => { 36 | if (err) return reject(err); 37 | resolve(); 38 | }); 39 | }); 40 | } 41 | 42 | export function readFile(path: string, encoding: string) { 43 | return new Promise((resolve, reject) => { 44 | fs.readFile(path, encoding, (err, data) => { 45 | if (err) return reject(err); 46 | resolve(data); 47 | }); 48 | }); 49 | } 50 | 51 | export function getListOfFiles( 52 | globPath: string, 53 | exclude?: string 54 | ): Promise { 55 | return new Promise((resolve, reject) => { 56 | const options = exclude ? { ignore: exclude } : {}; 57 | 58 | glob(globPath, options, (error, matches) => { 59 | if (error) { 60 | return reject(error); 61 | } 62 | 63 | resolve(matches); 64 | }); 65 | }); 66 | } 67 | 68 | export function removeRecursively(glob: string) { 69 | return new Promise((resolve, reject) => { 70 | rimraf(glob, err => { 71 | if (err) { 72 | reject(err); 73 | } else { 74 | resolve(); 75 | } 76 | }); 77 | }); 78 | } 79 | 80 | export function exec( 81 | command: string, 82 | args: string[], 83 | base: BaseFn = fromNpm 84 | ): Promise { 85 | return new Promise((resolve, reject) => { 86 | cp.exec(base(command) + ' ' + args.join(' '), (err, stdout) => { 87 | if (err) { 88 | return reject(err); 89 | } 90 | 91 | resolve(stdout.toString()); 92 | }); 93 | }); 94 | } 95 | 96 | export function cmd(command: string, args: string[]): Promise { 97 | return exec(command, args, (command: string) => command); 98 | } 99 | 100 | export function git(args: string[]): Promise { 101 | return cmd('git', args); 102 | } 103 | 104 | export function ignoreErrors(promise: Promise): Promise { 105 | return promise.catch(() => null); 106 | } 107 | 108 | export function fromNpm(command: string) { 109 | return baseDir(`./node_modules/.bin/${command}`); 110 | } 111 | 112 | export function getPackageFilePath(pkg: string, filename: string) { 113 | return baseDir(`./modules/${pkg}/${filename}`); 114 | } 115 | 116 | const sorcery = require('sorcery'); 117 | export async function mapSources(file: string) { 118 | const chain = await sorcery.load(file); 119 | chain.write(); 120 | } 121 | 122 | const ora = require('ora'); 123 | async function runTask(name: string, taskFn: () => Promise) { 124 | const spinner = ora(name); 125 | 126 | try { 127 | spinner.start(); 128 | 129 | await taskFn(); 130 | 131 | spinner.succeed(); 132 | } catch (e) { 133 | spinner.fail(); 134 | 135 | throw e; 136 | } 137 | } 138 | 139 | export function createBuilder(tasks: TaskDef[]) { 140 | return async function(config: Config) { 141 | for (let [name, runner] of tasks) { 142 | await runTask(name, () => runner(config)); 143 | } 144 | }; 145 | } 146 | 147 | export function flatMap(list: K[], mapFn: (item: K) => J[]): J[] { 148 | return list.reduce( 149 | function(newList, nextItem) { 150 | return [...newList, ...mapFn(nextItem)]; 151 | }, 152 | [] as J[] 153 | ); 154 | } 155 | 156 | export function getTopLevelPackages(config: Config) { 157 | return config.packages.map(packageDescription => packageDescription.name); 158 | } 159 | 160 | export function getTestingPackages(config: Config) { 161 | return flatMap(config.packages, ({ name, hasTestingModule }) => { 162 | if (hasTestingModule) { 163 | return [`${name}/testing`]; 164 | } 165 | 166 | return []; 167 | }); 168 | } 169 | 170 | export function getAllPackages(config: Config) { 171 | return flatMap(config.packages, ({ name, hasTestingModule }) => { 172 | if (hasTestingModule) { 173 | return [name, `${name}/testing`]; 174 | } 175 | 176 | return [name]; 177 | }); 178 | } 179 | 180 | export function getDestinationName(packageName: string) { 181 | return packageName.replace('/testing', '-testing'); 182 | } 183 | 184 | export function getTopLevelName(packageName: string) { 185 | return packageName.replace('/testing', ''); 186 | } 187 | 188 | export function getBottomLevelName(packageName: string) { 189 | return packageName.includes('/testing') ? 'testing' : packageName; 190 | } 191 | 192 | export function baseDir(...dirs: string[]): string { 193 | return `"${path.resolve(__dirname, '../', ...dirs)}"`; 194 | } 195 | -------------------------------------------------------------------------------- /templates/project/build/tasks.ts: -------------------------------------------------------------------------------- 1 | /* tslint:disable */ 2 | 3 | import { join, dirname } from 'path'; 4 | import { existsSync, mkdirSync } from 'fs'; 5 | import { Config } from './config'; 6 | import { ncp } from 'ncp'; 7 | import * as util from './util'; 8 | import { inlineResourcesFromString } from './inline'; 9 | 10 | /** 11 | * Cleans the top level dist folder. All npm-ready packages are created 12 | * in the dist folder. 13 | */ 14 | export function removeFolder(folder: string) { 15 | return function(config: Config) { 16 | return util.exec('rimraf', [folder]); 17 | }; 18 | } 19 | /** 20 | * Uses the 'tsconfig-build.json' file in each package directory to produce 21 | * AOT and Closure compatible JavaScript 22 | */ 23 | export async function compilePackagesWithNgc(config: Config) { 24 | const pkgs = util.getTopLevelPackages(config); 25 | const testPkgs = util.getTestingPackages(config); 26 | 27 | await pkgs.reduce((promise, pkg) => { 28 | return promise.then(() => _compilePackagesWithNgc(pkg)); 29 | }, Promise.resolve()); 30 | await mapAsync(testPkgs, _compilePackagesWithNgc); 31 | } 32 | 33 | async function _compilePackagesWithNgc(pkg: string) { 34 | await util.exec('ngc', [`-p ./.tmp/${pkg}/tsconfig-build.json`]); 35 | 36 | /** 37 | * Test modules are treated differently because nested inside top-level. 38 | * This step removes the top-level package from testing modules from the 39 | * export statement. 40 | * Also changes the module name from 'index' to 'testing' 41 | * i.e. export * from './effects/testing/index' becomes './testing/testing'; 42 | * 43 | * See https://github.com/ngrx/platform/issues/94 44 | */ 45 | let [exportPath, moduleName] = /\/testing$/.test(pkg) 46 | ? [pkg.replace(/(.*\/)testing/i, 'testing'), 'testing'] 47 | : [pkg, 'index']; 48 | 49 | const entryTypeDefinition = `export * from './${exportPath}/${moduleName}';`; 50 | const entryMetadata = `{"__symbolic":"module","version":3,"metadata":{},"exports":[{"from":"./${pkg}/index"}]}`; 51 | 52 | await Promise.all([ 53 | util.writeFile(`./dist/packages/${pkg}.d.ts`, entryTypeDefinition), 54 | util.writeFile(`./dist/packages/${pkg}.metadata.json`, entryMetadata) 55 | ]); 56 | } 57 | 58 | /** 59 | * Uses Rollup to bundle the JavaScript into a single flat file called 60 | * a FESM (Flat Ecma Script Module) 61 | */ 62 | export async function bundleFesms(config: Config) { 63 | const pkgs = util.getAllPackages(config); 64 | 65 | await mapAsync(pkgs, async pkg => { 66 | const topLevelName = util.getTopLevelName(pkg); 67 | 68 | await util.exec('rollup', [ 69 | `-i ./dist/packages/${pkg}/index.js`, 70 | `-o ./dist/${topLevelName}/${config.scope}/${pkg}.js`, 71 | `-f es`, 72 | `--sourcemap` 73 | ]); 74 | 75 | await util.mapSources(`./dist/${topLevelName}/${config.scope}/${pkg}.js`); 76 | }); 77 | } 78 | 79 | /** 80 | * Copies each FESM into a TS file then uses TypeScript to downlevel 81 | * the FESM into ES5 with ESM modules 82 | */ 83 | export async function downLevelFesmsToES5(config: Config) { 84 | const packages = util.getAllPackages(config); 85 | const tscArgs = ['--target es5', '--module es2015', '--noLib', '--sourceMap']; 86 | 87 | await mapAsync(packages, async pkg => { 88 | const topLevelName = util.getTopLevelName(pkg); 89 | 90 | const file = `./dist/${topLevelName}/${config.scope}/${pkg}.js`; 91 | const target = `./dist/${topLevelName}/${config.scope}/${pkg}.es5.ts`; 92 | 93 | await util.copy(file, target); 94 | await util.ignoreErrors(util.exec('tsc', [target, ...tscArgs])); 95 | await util.mapSources(target.replace('.ts', '.js')); 96 | await util.remove(target); 97 | }); 98 | 99 | await util.removeRecursively(`./dist/**/*/${config.scope}/*.ts`); 100 | } 101 | 102 | /** 103 | * Re-runs Rollup on the downleveled ES5 to produce a UMD bundle 104 | */ 105 | export async function createUmdBundles(config: Config) { 106 | await mapAsync(util.getAllPackages(config), async pkg => { 107 | const topLevelName = util.getTopLevelName(pkg); 108 | const destinationName = util.getDestinationName(pkg); 109 | 110 | const rollupArgs = [`-c ./modules/${pkg}/rollup.config.js`, `--sourcemap`]; 111 | 112 | await util.exec('rollup', rollupArgs); 113 | await util.mapSources( 114 | `./dist/${topLevelName}/bundles/${destinationName}.umd.js` 115 | ); 116 | }); 117 | } 118 | 119 | /** 120 | * Removes any leftover TypeScript files from previous compilation steps, 121 | * leaving any type definition files in place 122 | */ 123 | export async function cleanTypeScriptFiles(config: Config) { 124 | const tsFilesGlob = './dist/packages/**/*.ts'; 125 | const dtsFilesFlob = './dist/packages/**/*.d.ts'; 126 | const filesToRemove = await util.getListOfFiles(tsFilesGlob, dtsFilesFlob); 127 | 128 | await mapAsync(filesToRemove, util.remove); 129 | } 130 | 131 | /** 132 | * Renames the index files in each package to the name 133 | * of the package. 134 | */ 135 | export async function renamePackageEntryFiles(config: Config) { 136 | await mapAsync(util.getAllPackages(config), async pkg => { 137 | const bottomLevelName = util.getBottomLevelName(pkg); 138 | 139 | const files = await util.getListOfFiles(`./dist/packages/${pkg}/index.**`); 140 | 141 | await mapAsync(files, async file => { 142 | const target = file.replace('index', bottomLevelName); 143 | 144 | await util.copy(file, target); 145 | await util.remove(file); 146 | }); 147 | }); 148 | } 149 | 150 | /** 151 | * Removes any remaining source map files from running NGC 152 | */ 153 | export async function removeRemainingSourceMapFiles(config: Config) { 154 | const packages = util.getTopLevelPackages(config); 155 | 156 | await util.removeRecursively( 157 | `./dist/packages/?(${packages.join('|')})/**/*.map` 158 | ); 159 | } 160 | 161 | /** 162 | * Copies the type definition files and NGC metadata files to 163 | * the root of the distribution 164 | */ 165 | export async function copyTypeDefinitionFiles(config: Config) { 166 | const packages = util.getTopLevelPackages(config); 167 | const files = await util.getListOfFiles( 168 | `./dist/packages/?(${packages.join('|')})/**/*.*` 169 | ); 170 | 171 | await mapAsync(files, async file => { 172 | const target = file.replace('packages/', ''); 173 | await util.copy(file, target); 174 | }); 175 | 176 | await util.removeRecursively(`./dist/packages/?(${packages.join('|')})`); 177 | } 178 | 179 | /** 180 | * Creates minified copies of each UMD bundle 181 | */ 182 | export async function minifyUmdBundles(config: Config) { 183 | const uglifyArgs = ['-c', '-m', '--comments']; 184 | 185 | await mapAsync(util.getAllPackages(config), async pkg => { 186 | const topLevelName = util.getTopLevelName(pkg); 187 | const destinationName = util.getDestinationName(pkg); 188 | const file = `./dist/${topLevelName}/bundles/${destinationName}.umd.js`; 189 | const out = `./dist/${topLevelName}/bundles/${destinationName}.umd.min.js`; 190 | 191 | return util.exec('uglifyjs', [ 192 | file, 193 | ...uglifyArgs, 194 | `-o ${out}`, 195 | `--source-map "filename='${out}.map' includeSources='${file}', content='${file}.map'"` 196 | ]); 197 | }); 198 | } 199 | 200 | /** 201 | * Copies the README.md, LICENSE, and package.json files into 202 | * each package 203 | */ 204 | export async function copyDocs(config: Config) { 205 | const packages = util.getTopLevelPackages(config); 206 | 207 | await mapAsync(packages, async pkg => { 208 | const source = `./modules/${pkg}`; 209 | const target = `./dist/${pkg}`; 210 | 211 | await Promise.all([ 212 | util.copy(`${source}/README.md`, `${target}/README.md`) 213 | ]); 214 | }); 215 | } 216 | 217 | export async function copyPackageJsonFiles(config: Config) { 218 | const packages = util.getAllPackages(config); 219 | 220 | await mapAsync(packages, async pkg => { 221 | const source = `./modules/${pkg}`; 222 | const target = `./dist/${pkg}`; 223 | 224 | await util.copy(`${source}/package.json`, `${target}/package.json`); 225 | }); 226 | } 227 | 228 | /** 229 | * Removes the packages folder 230 | */ 231 | export async function removePackagesFolder(config: Config) { 232 | await util.removeRecursively('./dist/packages'); 233 | } 234 | 235 | export function mapAsync( 236 | list: T[], 237 | mapFn: (v: T, i: number) => Promise 238 | ) { 239 | return Promise.all(list.map(mapFn)); 240 | } 241 | 242 | export async function copySources(config: Config) { 243 | const pkgs = util.getTopLevelPackages(config); 244 | if (!existsSync('./.tmp')) { 245 | mkdirSync('./.tmp'); 246 | } 247 | await mapAsync(pkgs, _copySources); 248 | } 249 | 250 | async function _copySources(pkg: string) { 251 | return new Promise((res, rej) => { 252 | ncp(`./modules/${pkg}`, `.tmp/${pkg}`, err => { 253 | if (err) { 254 | rej(err); 255 | } 256 | res(); 257 | }); 258 | }); 259 | } 260 | 261 | export async function inlineResources(config: Config) { 262 | const pkgs = util.getTopLevelPackages(config); 263 | 264 | await mapAsync(pkgs, _inlineResources); 265 | } 266 | 267 | async function _inlineResources(pkg: String) { 268 | const files = await util.getListOfFiles( 269 | `./.tmp/${pkg}/src/**/*.component.ts` 270 | ); 271 | 272 | return Promise.all( 273 | files.map(filePath => { 274 | return util 275 | .readFile(filePath, 'utf-8') 276 | .then(content => 277 | inlineResourcesFromString(content as any, (url: any) => { 278 | // Resolve the template url. 279 | return join(dirname(filePath), url); 280 | }) 281 | ) 282 | .then(content => util.writeFile(filePath, content)) 283 | .catch(err => { 284 | console.error('An error occured: ', err); 285 | }); 286 | }) 287 | ); 288 | } 289 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@types/fs-extra@^4.0.2": 6 | version "4.0.2" 7 | resolved "https://registry.yarnpkg.com/@types/fs-extra/-/fs-extra-4.0.2.tgz#7b9b1bbf85962cbe029b5a83c9b530d7c75af3ba" 8 | dependencies: 9 | "@types/node" "*" 10 | 11 | "@types/inquirer@^0.0.35": 12 | version "0.0.35" 13 | resolved "https://registry.yarnpkg.com/@types/inquirer/-/inquirer-0.0.35.tgz#e054657cf2d10963823957d4d06ec244f05c65be" 14 | dependencies: 15 | "@types/rx" "*" 16 | "@types/through" "*" 17 | 18 | "@types/node@*", "@types/node@^8.0.31": 19 | version "8.0.31" 20 | resolved "https://registry.yarnpkg.com/@types/node/-/node-8.0.31.tgz#d9af61093cf4bfc9f066ca34de0175012cfb0ce9" 21 | 22 | "@types/ora@^1.3.1": 23 | version "1.3.1" 24 | resolved "https://registry.yarnpkg.com/@types/ora/-/ora-1.3.1.tgz#53db0e10b7ea2f014548e87ea81c755986502e52" 25 | dependencies: 26 | "@types/node" "*" 27 | 28 | "@types/rx-core-binding@*": 29 | version "4.0.4" 30 | resolved "https://registry.yarnpkg.com/@types/rx-core-binding/-/rx-core-binding-4.0.4.tgz#d969d32f15a62b89e2862c17b3ee78fe329818d3" 31 | dependencies: 32 | "@types/rx-core" "*" 33 | 34 | "@types/rx-core@*": 35 | version "4.0.3" 36 | resolved "https://registry.yarnpkg.com/@types/rx-core/-/rx-core-4.0.3.tgz#0b3354b1238cedbe2b74f6326f139dbc7a591d60" 37 | 38 | "@types/rx-lite-aggregates@*": 39 | version "4.0.3" 40 | resolved "https://registry.yarnpkg.com/@types/rx-lite-aggregates/-/rx-lite-aggregates-4.0.3.tgz#6efb2b7f3d5f07183a1cb2bd4b1371d7073384c2" 41 | dependencies: 42 | "@types/rx-lite" "*" 43 | 44 | "@types/rx-lite-async@*": 45 | version "4.0.2" 46 | resolved "https://registry.yarnpkg.com/@types/rx-lite-async/-/rx-lite-async-4.0.2.tgz#27fbf0caeff029f41e2d2aae638b05e91ceb600c" 47 | dependencies: 48 | "@types/rx-lite" "*" 49 | 50 | "@types/rx-lite-backpressure@*": 51 | version "4.0.3" 52 | resolved "https://registry.yarnpkg.com/@types/rx-lite-backpressure/-/rx-lite-backpressure-4.0.3.tgz#05abb19bdf87cc740196c355e5d0b37bb50b5d56" 53 | dependencies: 54 | "@types/rx-lite" "*" 55 | 56 | "@types/rx-lite-coincidence@*": 57 | version "4.0.3" 58 | resolved "https://registry.yarnpkg.com/@types/rx-lite-coincidence/-/rx-lite-coincidence-4.0.3.tgz#80bd69acc4054a15cdc1638e2dc8843498cd85c0" 59 | dependencies: 60 | "@types/rx-lite" "*" 61 | 62 | "@types/rx-lite-experimental@*": 63 | version "4.0.1" 64 | resolved "https://registry.yarnpkg.com/@types/rx-lite-experimental/-/rx-lite-experimental-4.0.1.tgz#c532f5cbdf3f2c15da16ded8930d1b2984023cbd" 65 | dependencies: 66 | "@types/rx-lite" "*" 67 | 68 | "@types/rx-lite-joinpatterns@*": 69 | version "4.0.1" 70 | resolved "https://registry.yarnpkg.com/@types/rx-lite-joinpatterns/-/rx-lite-joinpatterns-4.0.1.tgz#f70fe370518a8432f29158cc92ffb56b4e4afc3e" 71 | dependencies: 72 | "@types/rx-lite" "*" 73 | 74 | "@types/rx-lite-testing@*": 75 | version "4.0.1" 76 | resolved "https://registry.yarnpkg.com/@types/rx-lite-testing/-/rx-lite-testing-4.0.1.tgz#21b19d11f4dfd6ffef5a9d1648e9c8879bfe21e9" 77 | dependencies: 78 | "@types/rx-lite-virtualtime" "*" 79 | 80 | "@types/rx-lite-time@*": 81 | version "4.0.3" 82 | resolved "https://registry.yarnpkg.com/@types/rx-lite-time/-/rx-lite-time-4.0.3.tgz#0eda65474570237598f3448b845d2696f2dbb1c4" 83 | dependencies: 84 | "@types/rx-lite" "*" 85 | 86 | "@types/rx-lite-virtualtime@*": 87 | version "4.0.3" 88 | resolved "https://registry.yarnpkg.com/@types/rx-lite-virtualtime/-/rx-lite-virtualtime-4.0.3.tgz#4b30cacd0fe2e53af29f04f7438584c7d3959537" 89 | dependencies: 90 | "@types/rx-lite" "*" 91 | 92 | "@types/rx-lite@*": 93 | version "4.0.4" 94 | resolved "https://registry.yarnpkg.com/@types/rx-lite/-/rx-lite-4.0.4.tgz#710ebf89d0a2d596c21047d91b1242bcef51c30b" 95 | dependencies: 96 | "@types/rx-core" "*" 97 | "@types/rx-core-binding" "*" 98 | 99 | "@types/rx@*": 100 | version "4.1.1" 101 | resolved "https://registry.yarnpkg.com/@types/rx/-/rx-4.1.1.tgz#598fc94a56baed975f194574e0f572fd8e627a48" 102 | dependencies: 103 | "@types/rx-core" "*" 104 | "@types/rx-core-binding" "*" 105 | "@types/rx-lite" "*" 106 | "@types/rx-lite-aggregates" "*" 107 | "@types/rx-lite-async" "*" 108 | "@types/rx-lite-backpressure" "*" 109 | "@types/rx-lite-coincidence" "*" 110 | "@types/rx-lite-experimental" "*" 111 | "@types/rx-lite-joinpatterns" "*" 112 | "@types/rx-lite-testing" "*" 113 | "@types/rx-lite-time" "*" 114 | "@types/rx-lite-virtualtime" "*" 115 | 116 | "@types/through@*": 117 | version "0.0.29" 118 | resolved "https://registry.yarnpkg.com/@types/through/-/through-0.0.29.tgz#72943aac922e179339c651fa34a4428a4d722f93" 119 | dependencies: 120 | "@types/node" "*" 121 | 122 | JSONStream@^1.0.4: 123 | version "1.3.1" 124 | resolved "https://registry.yarnpkg.com/JSONStream/-/JSONStream-1.3.1.tgz#707f761e01dae9e16f1bcf93703b78c70966579a" 125 | dependencies: 126 | jsonparse "^1.2.0" 127 | through ">=2.2.7 <3" 128 | 129 | align-text@^0.1.1, align-text@^0.1.3: 130 | version "0.1.4" 131 | resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" 132 | dependencies: 133 | kind-of "^3.0.2" 134 | longest "^1.0.1" 135 | repeat-string "^1.5.2" 136 | 137 | amdefine@>=0.0.4: 138 | version "1.0.1" 139 | resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" 140 | 141 | ansi-escapes@^1.0.0, ansi-escapes@^1.1.0: 142 | version "1.4.0" 143 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e" 144 | 145 | ansi-escapes@^3.0.0: 146 | version "3.0.0" 147 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.0.0.tgz#ec3e8b4e9f8064fc02c3ac9b65f1c275bda8ef92" 148 | 149 | ansi-regex@^2.0.0: 150 | version "2.1.1" 151 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 152 | 153 | ansi-regex@^3.0.0: 154 | version "3.0.0" 155 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 156 | 157 | ansi-styles@^2.2.1: 158 | version "2.2.1" 159 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 160 | 161 | ansi-styles@^3.1.0, ansi-styles@^3.2.0: 162 | version "3.2.0" 163 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88" 164 | dependencies: 165 | color-convert "^1.9.0" 166 | 167 | ansi@^0.3.0, ansi@~0.3.1: 168 | version "0.3.1" 169 | resolved "https://registry.yarnpkg.com/ansi/-/ansi-0.3.1.tgz#0c42d4fb17160d5a9af1e484bace1c66922c1b21" 170 | 171 | app-root-path@^2.0.0: 172 | version "2.0.1" 173 | resolved "https://registry.yarnpkg.com/app-root-path/-/app-root-path-2.0.1.tgz#cd62dcf8e4fd5a417efc664d2e5b10653c651b46" 174 | 175 | are-we-there-yet@~1.1.2: 176 | version "1.1.4" 177 | resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz#bb5dca382bb94f05e15194373d16fd3ba1ca110d" 178 | dependencies: 179 | delegates "^1.0.0" 180 | readable-stream "^2.0.6" 181 | 182 | argparse@^1.0.7: 183 | version "1.0.9" 184 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.9.tgz#73d83bc263f86e97f8cc4f6bae1b0e90a7d22c86" 185 | dependencies: 186 | sprintf-js "~1.0.2" 187 | 188 | arr-diff@^2.0.0: 189 | version "2.0.0" 190 | resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" 191 | dependencies: 192 | arr-flatten "^1.0.1" 193 | 194 | arr-flatten@^1.0.1: 195 | version "1.1.0" 196 | resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" 197 | 198 | array-find-index@^1.0.1: 199 | version "1.0.2" 200 | resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" 201 | 202 | array-ify@^1.0.0: 203 | version "1.0.0" 204 | resolved "https://registry.yarnpkg.com/array-ify/-/array-ify-1.0.0.tgz#9e528762b4a9066ad163a6962a364418e9626ece" 205 | 206 | array-unique@^0.2.1: 207 | version "0.2.1" 208 | resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" 209 | 210 | async@^1.4.0: 211 | version "1.5.2" 212 | resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 213 | 214 | async@~1.0.0: 215 | version "1.0.0" 216 | resolved "https://registry.yarnpkg.com/async/-/async-1.0.0.tgz#f8fc04ca3a13784ade9e1641af98578cfbd647a9" 217 | 218 | babel-code-frame@^6.22.0: 219 | version "6.26.0" 220 | resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" 221 | dependencies: 222 | chalk "^1.1.3" 223 | esutils "^2.0.2" 224 | js-tokens "^3.0.2" 225 | 226 | balanced-match@^1.0.0: 227 | version "1.0.0" 228 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 229 | 230 | bluebird@^3.4.7: 231 | version "3.5.0" 232 | resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.0.tgz#791420d7f551eea2897453a8a77653f96606d67c" 233 | 234 | brace-expansion@^1.1.7: 235 | version "1.1.8" 236 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.8.tgz#c07b211c7c952ec1f8efd51a77ef0d1d3990a292" 237 | dependencies: 238 | balanced-match "^1.0.0" 239 | concat-map "0.0.1" 240 | 241 | braces@^1.8.2: 242 | version "1.8.5" 243 | resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" 244 | dependencies: 245 | expand-range "^1.8.1" 246 | preserve "^0.2.0" 247 | repeat-element "^1.1.2" 248 | 249 | builtin-modules@^1.0.0: 250 | version "1.1.1" 251 | resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" 252 | 253 | cachedir@^1.1.0: 254 | version "1.1.1" 255 | resolved "https://registry.yarnpkg.com/cachedir/-/cachedir-1.1.1.tgz#e1363075ea206a12767d92bb711c8a2f76a10f62" 256 | dependencies: 257 | os-homedir "^1.0.1" 258 | 259 | camelcase-keys@^2.0.0: 260 | version "2.1.0" 261 | resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" 262 | dependencies: 263 | camelcase "^2.0.0" 264 | map-obj "^1.0.0" 265 | 266 | camelcase@^1.0.2: 267 | version "1.2.1" 268 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" 269 | 270 | camelcase@^2.0.0: 271 | version "2.1.1" 272 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" 273 | 274 | camelcase@^4.1.0: 275 | version "4.1.0" 276 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" 277 | 278 | caporal@^0.7.0: 279 | version "0.7.0" 280 | resolved "https://registry.yarnpkg.com/caporal/-/caporal-0.7.0.tgz#3beaaf816f9a5b34f267deb1f92f3e156a1be2f8" 281 | dependencies: 282 | bluebird "^3.4.7" 283 | chalk "^1.1.3" 284 | cli-table2 "^0.2.0" 285 | fast-levenshtein "^2.0.6" 286 | lodash.camelcase "^4.3.0" 287 | micromist "^1.0.1" 288 | prettyjson "^1.2.1" 289 | tabtab "^2.2.2" 290 | winston "^2.3.1" 291 | 292 | center-align@^0.1.1: 293 | version "0.1.3" 294 | resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" 295 | dependencies: 296 | align-text "^0.1.3" 297 | lazy-cache "^1.0.3" 298 | 299 | chalk@1.1.3, chalk@^1.0.0, chalk@^1.1.1, chalk@^1.1.3: 300 | version "1.1.3" 301 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" 302 | dependencies: 303 | ansi-styles "^2.2.1" 304 | escape-string-regexp "^1.0.2" 305 | has-ansi "^2.0.0" 306 | strip-ansi "^3.0.0" 307 | supports-color "^2.0.0" 308 | 309 | chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0: 310 | version "2.1.0" 311 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.1.0.tgz#ac5becf14fa21b99c6c92ca7a7d7cfd5b17e743e" 312 | dependencies: 313 | ansi-styles "^3.1.0" 314 | escape-string-regexp "^1.0.5" 315 | supports-color "^4.0.0" 316 | 317 | ci-info@^1.0.0: 318 | version "1.1.1" 319 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.1.1.tgz#47b44df118c48d2597b56d342e7e25791060171a" 320 | 321 | cli-cursor@^1.0.1, cli-cursor@^1.0.2: 322 | version "1.0.2" 323 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" 324 | dependencies: 325 | restore-cursor "^1.0.1" 326 | 327 | cli-cursor@^2.1.0: 328 | version "2.1.0" 329 | resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 330 | dependencies: 331 | restore-cursor "^2.0.0" 332 | 333 | cli-spinners@^0.1.2: 334 | version "0.1.2" 335 | resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-0.1.2.tgz#bb764d88e185fb9e1e6a2a1f19772318f605e31c" 336 | 337 | cli-spinners@^1.0.0: 338 | version "1.0.1" 339 | resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-1.0.1.tgz#2675321c100f195b02877ac499e9911fa34b9783" 340 | 341 | cli-table2@^0.2.0: 342 | version "0.2.0" 343 | resolved "https://registry.yarnpkg.com/cli-table2/-/cli-table2-0.2.0.tgz#2d1ef7f218a0e786e214540562d4bd177fe32d97" 344 | dependencies: 345 | lodash "^3.10.1" 346 | string-width "^1.0.1" 347 | optionalDependencies: 348 | colors "^1.1.2" 349 | 350 | cli-truncate@^0.2.1: 351 | version "0.2.1" 352 | resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-0.2.1.tgz#9f15cfbb0705005369216c626ac7d05ab90dd574" 353 | dependencies: 354 | slice-ansi "0.0.4" 355 | string-width "^1.0.1" 356 | 357 | cli-width@^2.0.0: 358 | version "2.2.0" 359 | resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639" 360 | 361 | cliui@^2.1.0: 362 | version "2.1.0" 363 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" 364 | dependencies: 365 | center-align "^0.1.1" 366 | right-align "^0.1.1" 367 | wordwrap "0.0.2" 368 | 369 | cliui@^3.2.0: 370 | version "3.2.0" 371 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" 372 | dependencies: 373 | string-width "^1.0.1" 374 | strip-ansi "^3.0.1" 375 | wrap-ansi "^2.0.0" 376 | 377 | code-point-at@^1.0.0: 378 | version "1.1.0" 379 | resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" 380 | 381 | color-convert@^1.9.0: 382 | version "1.9.0" 383 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" 384 | dependencies: 385 | color-name "^1.1.1" 386 | 387 | color-name@^1.1.1: 388 | version "1.1.3" 389 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 390 | 391 | colors@1.0.x: 392 | version "1.0.3" 393 | resolved "https://registry.yarnpkg.com/colors/-/colors-1.0.3.tgz#0433f44d809680fdeb60ed260f1b0c262e82a40b" 394 | 395 | colors@^1.1.2: 396 | version "1.1.2" 397 | resolved "https://registry.yarnpkg.com/colors/-/colors-1.1.2.tgz#168a4701756b6a7f51a12ce0c97bfa28c084ed63" 398 | 399 | commander@^2.9.0: 400 | version "2.11.0" 401 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.11.0.tgz#157152fd1e7a6c8d98a5b715cf376df928004563" 402 | 403 | commitizen@^2.9.6: 404 | version "2.9.6" 405 | resolved "https://registry.yarnpkg.com/commitizen/-/commitizen-2.9.6.tgz#c0d00535ef264da7f63737edfda4228983fa2291" 406 | dependencies: 407 | cachedir "^1.1.0" 408 | chalk "1.1.3" 409 | cz-conventional-changelog "1.2.0" 410 | dedent "0.6.0" 411 | detect-indent "4.0.0" 412 | find-node-modules "1.0.4" 413 | find-root "1.0.0" 414 | fs-extra "^1.0.0" 415 | glob "7.1.1" 416 | inquirer "1.2.3" 417 | lodash "4.17.2" 418 | minimist "1.2.0" 419 | path-exists "2.1.0" 420 | shelljs "0.7.6" 421 | strip-json-comments "2.0.1" 422 | 423 | compare-func@^1.3.1: 424 | version "1.3.2" 425 | resolved "https://registry.yarnpkg.com/compare-func/-/compare-func-1.3.2.tgz#99dd0ba457e1f9bc722b12c08ec33eeab31fa648" 426 | dependencies: 427 | array-ify "^1.0.0" 428 | dot-prop "^3.0.0" 429 | 430 | concat-map@0.0.1: 431 | version "0.0.1" 432 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 433 | 434 | concat-stream@^1.4.10, concat-stream@^1.4.7: 435 | version "1.6.0" 436 | resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7" 437 | dependencies: 438 | inherits "^2.0.3" 439 | readable-stream "^2.2.2" 440 | typedarray "^0.0.6" 441 | 442 | conventional-changelog-angular@^1.5.1: 443 | version "1.5.1" 444 | resolved "https://registry.yarnpkg.com/conventional-changelog-angular/-/conventional-changelog-angular-1.5.1.tgz#974e73aa1c39c392e4364f2952bd9a62904e9ea3" 445 | dependencies: 446 | compare-func "^1.3.1" 447 | q "^1.4.1" 448 | 449 | conventional-changelog-atom@^0.1.1: 450 | version "0.1.1" 451 | resolved "https://registry.yarnpkg.com/conventional-changelog-atom/-/conventional-changelog-atom-0.1.1.tgz#d40a9b297961b53c745e5d1718fd1a3379f6a92f" 452 | dependencies: 453 | q "^1.4.1" 454 | 455 | conventional-changelog-codemirror@^0.2.0: 456 | version "0.2.0" 457 | resolved "https://registry.yarnpkg.com/conventional-changelog-codemirror/-/conventional-changelog-codemirror-0.2.0.tgz#3cc925955f3b14402827b15168049821972d9459" 458 | dependencies: 459 | q "^1.4.1" 460 | 461 | conventional-changelog-core@^1.9.2: 462 | version "1.9.2" 463 | resolved "https://registry.yarnpkg.com/conventional-changelog-core/-/conventional-changelog-core-1.9.2.tgz#a09b6b959161671ff45b93cc9efb0444e7c845c0" 464 | dependencies: 465 | conventional-changelog-writer "^2.0.1" 466 | conventional-commits-parser "^2.0.0" 467 | dateformat "^1.0.12" 468 | get-pkg-repo "^1.0.0" 469 | git-raw-commits "^1.2.0" 470 | git-remote-origin-url "^2.0.0" 471 | git-semver-tags "^1.2.2" 472 | lodash "^4.0.0" 473 | normalize-package-data "^2.3.5" 474 | q "^1.4.1" 475 | read-pkg "^1.1.0" 476 | read-pkg-up "^1.0.1" 477 | through2 "^2.0.0" 478 | 479 | conventional-changelog-ember@^0.2.8: 480 | version "0.2.8" 481 | resolved "https://registry.yarnpkg.com/conventional-changelog-ember/-/conventional-changelog-ember-0.2.8.tgz#65e686da83d23b67133d1f853908c87f948035c0" 482 | dependencies: 483 | q "^1.4.1" 484 | 485 | conventional-changelog-eslint@^0.2.0: 486 | version "0.2.0" 487 | resolved "https://registry.yarnpkg.com/conventional-changelog-eslint/-/conventional-changelog-eslint-0.2.0.tgz#b4b9b5dc09417844d87c7bcfb16bdcc686c4b1c1" 488 | dependencies: 489 | q "^1.4.1" 490 | 491 | conventional-changelog-express@^0.2.0: 492 | version "0.2.0" 493 | resolved "https://registry.yarnpkg.com/conventional-changelog-express/-/conventional-changelog-express-0.2.0.tgz#8d666ad41b10ebf964a4602062ddd2e00deb518d" 494 | dependencies: 495 | q "^1.4.1" 496 | 497 | conventional-changelog-jquery@^0.1.0: 498 | version "0.1.0" 499 | resolved "https://registry.yarnpkg.com/conventional-changelog-jquery/-/conventional-changelog-jquery-0.1.0.tgz#0208397162e3846986e71273b6c79c5b5f80f510" 500 | dependencies: 501 | q "^1.4.1" 502 | 503 | conventional-changelog-jscs@^0.1.0: 504 | version "0.1.0" 505 | resolved "https://registry.yarnpkg.com/conventional-changelog-jscs/-/conventional-changelog-jscs-0.1.0.tgz#0479eb443cc7d72c58bf0bcf0ef1d444a92f0e5c" 506 | dependencies: 507 | q "^1.4.1" 508 | 509 | conventional-changelog-jshint@^0.2.0: 510 | version "0.2.0" 511 | resolved "https://registry.yarnpkg.com/conventional-changelog-jshint/-/conventional-changelog-jshint-0.2.0.tgz#63ad7aec66cd1ae559bafe80348c4657a6eb1872" 512 | dependencies: 513 | compare-func "^1.3.1" 514 | q "^1.4.1" 515 | 516 | conventional-changelog-writer@^2.0.1: 517 | version "2.0.1" 518 | resolved "https://registry.yarnpkg.com/conventional-changelog-writer/-/conventional-changelog-writer-2.0.1.tgz#47c10d0faba526b78d194389d1e931d09ee62372" 519 | dependencies: 520 | compare-func "^1.3.1" 521 | conventional-commits-filter "^1.0.0" 522 | dateformat "^1.0.11" 523 | handlebars "^4.0.2" 524 | json-stringify-safe "^5.0.1" 525 | lodash "^4.0.0" 526 | meow "^3.3.0" 527 | semver "^5.0.1" 528 | split "^1.0.0" 529 | through2 "^2.0.0" 530 | 531 | conventional-changelog@^1.1.0: 532 | version "1.1.6" 533 | resolved "https://registry.yarnpkg.com/conventional-changelog/-/conventional-changelog-1.1.6.tgz#ebd9b1ab63766c715f903f654626b6b1c0da7762" 534 | dependencies: 535 | conventional-changelog-angular "^1.5.1" 536 | conventional-changelog-atom "^0.1.1" 537 | conventional-changelog-codemirror "^0.2.0" 538 | conventional-changelog-core "^1.9.2" 539 | conventional-changelog-ember "^0.2.8" 540 | conventional-changelog-eslint "^0.2.0" 541 | conventional-changelog-express "^0.2.0" 542 | conventional-changelog-jquery "^0.1.0" 543 | conventional-changelog-jscs "^0.1.0" 544 | conventional-changelog-jshint "^0.2.0" 545 | 546 | conventional-commit-types@^2.0.0: 547 | version "2.2.0" 548 | resolved "https://registry.yarnpkg.com/conventional-commit-types/-/conventional-commit-types-2.2.0.tgz#5db95739d6c212acbe7b6f656a11b940baa68946" 549 | 550 | conventional-commits-filter@^1.0.0: 551 | version "1.0.0" 552 | resolved "https://registry.yarnpkg.com/conventional-commits-filter/-/conventional-commits-filter-1.0.0.tgz#6fc2a659372bc3f2339cf9ffff7e1b0344b93039" 553 | dependencies: 554 | is-subset "^0.1.1" 555 | modify-values "^1.0.0" 556 | 557 | conventional-commits-parser@^2.0.0: 558 | version "2.0.0" 559 | resolved "https://registry.yarnpkg.com/conventional-commits-parser/-/conventional-commits-parser-2.0.0.tgz#71d01910cb0a99aeb20c144e50f81f4df3178447" 560 | dependencies: 561 | JSONStream "^1.0.4" 562 | is-text-path "^1.0.0" 563 | lodash "^4.2.1" 564 | meow "^3.3.0" 565 | split2 "^2.0.0" 566 | through2 "^2.0.0" 567 | trim-off-newlines "^1.0.0" 568 | 569 | conventional-recommended-bump@^1.0.0: 570 | version "1.0.2" 571 | resolved "https://registry.yarnpkg.com/conventional-recommended-bump/-/conventional-recommended-bump-1.0.2.tgz#31856443ab6f9453a1827650e7cc15ec28769645" 572 | dependencies: 573 | concat-stream "^1.4.10" 574 | conventional-commits-filter "^1.0.0" 575 | conventional-commits-parser "^2.0.0" 576 | git-raw-commits "^1.2.0" 577 | git-semver-tags "^1.2.2" 578 | meow "^3.3.0" 579 | object-assign "^4.0.1" 580 | 581 | core-util-is@~1.0.0: 582 | version "1.0.2" 583 | resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" 584 | 585 | cosmiconfig@^1.1.0: 586 | version "1.1.0" 587 | resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-1.1.0.tgz#0dea0f9804efdfb929fbb1b188e25553ea053d37" 588 | dependencies: 589 | graceful-fs "^4.1.2" 590 | js-yaml "^3.4.3" 591 | minimist "^1.2.0" 592 | object-assign "^4.0.1" 593 | os-homedir "^1.0.1" 594 | parse-json "^2.2.0" 595 | pinkie-promise "^2.0.0" 596 | require-from-string "^1.1.0" 597 | 598 | cross-spawn@^5.0.1: 599 | version "5.1.0" 600 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" 601 | dependencies: 602 | lru-cache "^4.0.1" 603 | shebang-command "^1.2.0" 604 | which "^1.2.9" 605 | 606 | currently-unhandled@^0.4.1: 607 | version "0.4.1" 608 | resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea" 609 | dependencies: 610 | array-find-index "^1.0.1" 611 | 612 | cycle@1.0.x: 613 | version "1.0.3" 614 | resolved "https://registry.yarnpkg.com/cycle/-/cycle-1.0.3.tgz#21e80b2be8580f98b468f379430662b046c34ad2" 615 | 616 | cz-conventional-changelog@1.2.0: 617 | version "1.2.0" 618 | resolved "https://registry.yarnpkg.com/cz-conventional-changelog/-/cz-conventional-changelog-1.2.0.tgz#2bca04964c8919b23f3fd6a89ef5e6008b31b3f8" 619 | dependencies: 620 | conventional-commit-types "^2.0.0" 621 | lodash.map "^4.5.1" 622 | longest "^1.0.1" 623 | pad-right "^0.2.2" 624 | right-pad "^1.0.1" 625 | word-wrap "^1.0.3" 626 | 627 | cz-conventional-changelog@^2.0.0: 628 | version "2.0.0" 629 | resolved "https://registry.yarnpkg.com/cz-conventional-changelog/-/cz-conventional-changelog-2.0.0.tgz#55a979afdfe95e7024879d2a0f5924630170b533" 630 | dependencies: 631 | conventional-commit-types "^2.0.0" 632 | lodash.map "^4.5.1" 633 | longest "^1.0.1" 634 | pad-right "^0.2.2" 635 | right-pad "^1.0.1" 636 | word-wrap "^1.0.3" 637 | 638 | dargs@^4.0.1: 639 | version "4.1.0" 640 | resolved "https://registry.yarnpkg.com/dargs/-/dargs-4.1.0.tgz#03a9dbb4b5c2f139bf14ae53f0b8a2a6a86f4e17" 641 | dependencies: 642 | number-is-nan "^1.0.0" 643 | 644 | date-fns@^1.27.2: 645 | version "1.28.5" 646 | resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-1.28.5.tgz#257cfc45d322df45ef5658665967ee841cd73faf" 647 | 648 | dateformat@^1.0.11, dateformat@^1.0.12: 649 | version "1.0.12" 650 | resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-1.0.12.tgz#9f124b67594c937ff706932e4a642cca8dbbfee9" 651 | dependencies: 652 | get-stdin "^4.0.1" 653 | meow "^3.3.0" 654 | 655 | debug@^2.2.0: 656 | version "2.6.9" 657 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" 658 | dependencies: 659 | ms "2.0.0" 660 | 661 | decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.1.2: 662 | version "1.2.0" 663 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 664 | 665 | dedent@0.6.0: 666 | version "0.6.0" 667 | resolved "https://registry.yarnpkg.com/dedent/-/dedent-0.6.0.tgz#0e6da8f0ce52838ef5cec5c8f9396b0c1b64a3cb" 668 | 669 | delegates@^1.0.0: 670 | version "1.0.0" 671 | resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" 672 | 673 | detect-file@^0.1.0: 674 | version "0.1.0" 675 | resolved "https://registry.yarnpkg.com/detect-file/-/detect-file-0.1.0.tgz#4935dedfd9488648e006b0129566e9386711ea63" 676 | dependencies: 677 | fs-exists-sync "^0.1.0" 678 | 679 | detect-indent@4.0.0: 680 | version "4.0.0" 681 | resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" 682 | dependencies: 683 | repeating "^2.0.0" 684 | 685 | diff@^3.2.0: 686 | version "3.3.1" 687 | resolved "https://registry.yarnpkg.com/diff/-/diff-3.3.1.tgz#aa8567a6eed03c531fc89d3f711cd0e5259dec75" 688 | 689 | dot-prop@^3.0.0: 690 | version "3.0.0" 691 | resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-3.0.0.tgz#1b708af094a49c9a0e7dbcad790aba539dac1177" 692 | dependencies: 693 | is-obj "^1.0.0" 694 | 695 | elegant-spinner@^1.0.1: 696 | version "1.0.1" 697 | resolved "https://registry.yarnpkg.com/elegant-spinner/-/elegant-spinner-1.0.1.tgz#db043521c95d7e303fd8f345bedc3349cfb0729e" 698 | 699 | error-ex@^1.2.0: 700 | version "1.3.1" 701 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc" 702 | dependencies: 703 | is-arrayish "^0.2.1" 704 | 705 | escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 706 | version "1.0.5" 707 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 708 | 709 | esprima@^4.0.0: 710 | version "4.0.0" 711 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" 712 | 713 | esutils@^2.0.2: 714 | version "2.0.2" 715 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" 716 | 717 | execa@^0.7.0: 718 | version "0.7.0" 719 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" 720 | dependencies: 721 | cross-spawn "^5.0.1" 722 | get-stream "^3.0.0" 723 | is-stream "^1.1.0" 724 | npm-run-path "^2.0.0" 725 | p-finally "^1.0.0" 726 | signal-exit "^3.0.0" 727 | strip-eof "^1.0.0" 728 | 729 | execa@^0.8.0: 730 | version "0.8.0" 731 | resolved "https://registry.yarnpkg.com/execa/-/execa-0.8.0.tgz#d8d76bbc1b55217ed190fd6dd49d3c774ecfc8da" 732 | dependencies: 733 | cross-spawn "^5.0.1" 734 | get-stream "^3.0.0" 735 | is-stream "^1.1.0" 736 | npm-run-path "^2.0.0" 737 | p-finally "^1.0.0" 738 | signal-exit "^3.0.0" 739 | strip-eof "^1.0.0" 740 | 741 | exit-hook@^1.0.0: 742 | version "1.1.1" 743 | resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" 744 | 745 | expand-brackets@^0.1.4: 746 | version "0.1.5" 747 | resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" 748 | dependencies: 749 | is-posix-bracket "^0.1.0" 750 | 751 | expand-range@^1.8.1: 752 | version "1.8.2" 753 | resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" 754 | dependencies: 755 | fill-range "^2.1.0" 756 | 757 | expand-tilde@^1.2.2: 758 | version "1.2.2" 759 | resolved "https://registry.yarnpkg.com/expand-tilde/-/expand-tilde-1.2.2.tgz#0b81eba897e5a3d31d1c3d102f8f01441e559449" 760 | dependencies: 761 | os-homedir "^1.0.1" 762 | 763 | extend@^3.0.0: 764 | version "3.0.1" 765 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.1.tgz#a755ea7bc1adfcc5a31ce7e762dbaadc5e636444" 766 | 767 | external-editor@^1.1.0: 768 | version "1.1.1" 769 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-1.1.1.tgz#12d7b0db850f7ff7e7081baf4005700060c4600b" 770 | dependencies: 771 | extend "^3.0.0" 772 | spawn-sync "^1.0.15" 773 | tmp "^0.0.29" 774 | 775 | external-editor@^2.0.4: 776 | version "2.0.5" 777 | resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.0.5.tgz#52c249a3981b9ba187c7cacf5beb50bf1d91a6bc" 778 | dependencies: 779 | iconv-lite "^0.4.17" 780 | jschardet "^1.4.2" 781 | tmp "^0.0.33" 782 | 783 | extglob@^0.3.1: 784 | version "0.3.2" 785 | resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" 786 | dependencies: 787 | is-extglob "^1.0.0" 788 | 789 | eyes@0.1.x: 790 | version "0.1.8" 791 | resolved "https://registry.yarnpkg.com/eyes/-/eyes-0.1.8.tgz#62cf120234c683785d902348a800ef3e0cc20bc0" 792 | 793 | fast-levenshtein@^2.0.6: 794 | version "2.0.6" 795 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 796 | 797 | figures@^1.3.5, figures@^1.5.0, figures@^1.7.0: 798 | version "1.7.0" 799 | resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" 800 | dependencies: 801 | escape-string-regexp "^1.0.5" 802 | object-assign "^4.1.0" 803 | 804 | figures@^2.0.0: 805 | version "2.0.0" 806 | resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 807 | dependencies: 808 | escape-string-regexp "^1.0.5" 809 | 810 | filename-regex@^2.0.0: 811 | version "2.0.1" 812 | resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" 813 | 814 | fill-range@^2.1.0: 815 | version "2.2.3" 816 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.3.tgz#50b77dfd7e469bc7492470963699fe7a8485a723" 817 | dependencies: 818 | is-number "^2.1.0" 819 | isobject "^2.0.0" 820 | randomatic "^1.1.3" 821 | repeat-element "^1.1.2" 822 | repeat-string "^1.5.2" 823 | 824 | find-node-modules@1.0.4: 825 | version "1.0.4" 826 | resolved "https://registry.yarnpkg.com/find-node-modules/-/find-node-modules-1.0.4.tgz#b6deb3cccb699c87037677bcede2c5f5862b2550" 827 | dependencies: 828 | findup-sync "0.4.2" 829 | merge "^1.2.0" 830 | 831 | find-root@1.0.0: 832 | version "1.0.0" 833 | resolved "https://registry.yarnpkg.com/find-root/-/find-root-1.0.0.tgz#962ff211aab25c6520feeeb8d6287f8f6e95807a" 834 | 835 | find-up@^1.0.0: 836 | version "1.1.2" 837 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" 838 | dependencies: 839 | path-exists "^2.0.0" 840 | pinkie-promise "^2.0.0" 841 | 842 | find-up@^2.0.0: 843 | version "2.1.0" 844 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 845 | dependencies: 846 | locate-path "^2.0.0" 847 | 848 | findup-sync@0.4.2: 849 | version "0.4.2" 850 | resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-0.4.2.tgz#a8117d0f73124f5a4546839579fe52d7129fb5e5" 851 | dependencies: 852 | detect-file "^0.1.0" 853 | is-glob "^2.0.1" 854 | micromatch "^2.3.7" 855 | resolve-dir "^0.1.0" 856 | 857 | for-in@^1.0.1: 858 | version "1.0.2" 859 | resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" 860 | 861 | for-own@^0.1.4: 862 | version "0.1.5" 863 | resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" 864 | dependencies: 865 | for-in "^1.0.1" 866 | 867 | fs-access@^1.0.0: 868 | version "1.0.1" 869 | resolved "https://registry.yarnpkg.com/fs-access/-/fs-access-1.0.1.tgz#d6a87f262271cefebec30c553407fb995da8777a" 870 | dependencies: 871 | null-check "^1.0.0" 872 | 873 | fs-exists-sync@^0.1.0: 874 | version "0.1.0" 875 | resolved "https://registry.yarnpkg.com/fs-exists-sync/-/fs-exists-sync-0.1.0.tgz#982d6893af918e72d08dec9e8673ff2b5a8d6add" 876 | 877 | fs-extra@^1.0.0: 878 | version "1.0.0" 879 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-1.0.0.tgz#cd3ce5f7e7cb6145883fcae3191e9877f8587950" 880 | dependencies: 881 | graceful-fs "^4.1.2" 882 | jsonfile "^2.1.0" 883 | klaw "^1.0.0" 884 | 885 | fs-extra@^4.0.2: 886 | version "4.0.2" 887 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-4.0.2.tgz#f91704c53d1b461f893452b0c307d9997647ab6b" 888 | dependencies: 889 | graceful-fs "^4.1.2" 890 | jsonfile "^4.0.0" 891 | universalify "^0.1.0" 892 | 893 | fs.realpath@^1.0.0: 894 | version "1.0.0" 895 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 896 | 897 | gauge@~1.2.5: 898 | version "1.2.7" 899 | resolved "https://registry.yarnpkg.com/gauge/-/gauge-1.2.7.tgz#e9cec5483d3d4ee0ef44b60a7d99e4935e136d93" 900 | dependencies: 901 | ansi "^0.3.0" 902 | has-unicode "^2.0.0" 903 | lodash.pad "^4.1.0" 904 | lodash.padend "^4.1.0" 905 | lodash.padstart "^4.1.0" 906 | 907 | get-caller-file@^1.0.1: 908 | version "1.0.2" 909 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.2.tgz#f702e63127e7e231c160a80c1554acb70d5047e5" 910 | 911 | get-own-enumerable-property-symbols@^2.0.1: 912 | version "2.0.1" 913 | resolved "https://registry.yarnpkg.com/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-2.0.1.tgz#5c4ad87f2834c4b9b4e84549dc1e0650fb38c24b" 914 | 915 | get-pkg-repo@^1.0.0: 916 | version "1.4.0" 917 | resolved "https://registry.yarnpkg.com/get-pkg-repo/-/get-pkg-repo-1.4.0.tgz#c73b489c06d80cc5536c2c853f9e05232056972d" 918 | dependencies: 919 | hosted-git-info "^2.1.4" 920 | meow "^3.3.0" 921 | normalize-package-data "^2.3.0" 922 | parse-github-repo-url "^1.3.0" 923 | through2 "^2.0.0" 924 | 925 | get-stdin@^4.0.1: 926 | version "4.0.1" 927 | resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" 928 | 929 | get-stream@^3.0.0: 930 | version "3.0.0" 931 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" 932 | 933 | git-raw-commits@^1.2.0: 934 | version "1.2.0" 935 | resolved "https://registry.yarnpkg.com/git-raw-commits/-/git-raw-commits-1.2.0.tgz#0f3a8bfd99ae0f2d8b9224d58892975e9a52d03c" 936 | dependencies: 937 | dargs "^4.0.1" 938 | lodash.template "^4.0.2" 939 | meow "^3.3.0" 940 | split2 "^2.0.0" 941 | through2 "^2.0.0" 942 | 943 | git-remote-origin-url@^2.0.0: 944 | version "2.0.0" 945 | resolved "https://registry.yarnpkg.com/git-remote-origin-url/-/git-remote-origin-url-2.0.0.tgz#5282659dae2107145a11126112ad3216ec5fa65f" 946 | dependencies: 947 | gitconfiglocal "^1.0.0" 948 | pify "^2.3.0" 949 | 950 | git-semver-tags@^1.2.2: 951 | version "1.2.2" 952 | resolved "https://registry.yarnpkg.com/git-semver-tags/-/git-semver-tags-1.2.2.tgz#a2139be1bf6e337e125f3eb8bb8fc6f5d4d6445f" 953 | dependencies: 954 | meow "^3.3.0" 955 | semver "^5.0.1" 956 | 957 | gitconfiglocal@^1.0.0: 958 | version "1.0.0" 959 | resolved "https://registry.yarnpkg.com/gitconfiglocal/-/gitconfiglocal-1.0.0.tgz#41d045f3851a5ea88f03f24ca1c6178114464b9b" 960 | dependencies: 961 | ini "^1.3.2" 962 | 963 | glob-base@^0.3.0: 964 | version "0.3.0" 965 | resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" 966 | dependencies: 967 | glob-parent "^2.0.0" 968 | is-glob "^2.0.0" 969 | 970 | glob-parent@^2.0.0: 971 | version "2.0.0" 972 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" 973 | dependencies: 974 | is-glob "^2.0.0" 975 | 976 | glob@7.1.1: 977 | version "7.1.1" 978 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.1.tgz#805211df04faaf1c63a3600306cdf5ade50b2ec8" 979 | dependencies: 980 | fs.realpath "^1.0.0" 981 | inflight "^1.0.4" 982 | inherits "2" 983 | minimatch "^3.0.2" 984 | once "^1.3.0" 985 | path-is-absolute "^1.0.0" 986 | 987 | glob@^7.0.0, glob@^7.0.5, glob@^7.1.1: 988 | version "7.1.2" 989 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 990 | dependencies: 991 | fs.realpath "^1.0.0" 992 | inflight "^1.0.4" 993 | inherits "2" 994 | minimatch "^3.0.4" 995 | once "^1.3.0" 996 | path-is-absolute "^1.0.0" 997 | 998 | global-modules@^0.2.3: 999 | version "0.2.3" 1000 | resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-0.2.3.tgz#ea5a3bed42c6d6ce995a4f8a1269b5dae223828d" 1001 | dependencies: 1002 | global-prefix "^0.1.4" 1003 | is-windows "^0.2.0" 1004 | 1005 | global-prefix@^0.1.4: 1006 | version "0.1.5" 1007 | resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-0.1.5.tgz#8d3bc6b8da3ca8112a160d8d496ff0462bfef78f" 1008 | dependencies: 1009 | homedir-polyfill "^1.0.0" 1010 | ini "^1.3.4" 1011 | is-windows "^0.2.0" 1012 | which "^1.2.12" 1013 | 1014 | graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.1.9: 1015 | version "4.1.11" 1016 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.11.tgz#0e8bdfe4d1ddb8854d64e04ea7c00e2a026e5658" 1017 | 1018 | handlebars@^4.0.2: 1019 | version "4.0.10" 1020 | resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.10.tgz#3d30c718b09a3d96f23ea4cc1f403c4d3ba9ff4f" 1021 | dependencies: 1022 | async "^1.4.0" 1023 | optimist "^0.6.1" 1024 | source-map "^0.4.4" 1025 | optionalDependencies: 1026 | uglify-js "^2.6" 1027 | 1028 | has-ansi@^2.0.0: 1029 | version "2.0.0" 1030 | resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" 1031 | dependencies: 1032 | ansi-regex "^2.0.0" 1033 | 1034 | has-flag@^2.0.0: 1035 | version "2.0.0" 1036 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" 1037 | 1038 | has-unicode@^2.0.0: 1039 | version "2.0.1" 1040 | resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" 1041 | 1042 | homedir-polyfill@^1.0.0: 1043 | version "1.0.1" 1044 | resolved "https://registry.yarnpkg.com/homedir-polyfill/-/homedir-polyfill-1.0.1.tgz#4c2bbc8a758998feebf5ed68580f76d46768b4bc" 1045 | dependencies: 1046 | parse-passwd "^1.0.0" 1047 | 1048 | hosted-git-info@^2.1.4: 1049 | version "2.5.0" 1050 | resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.5.0.tgz#6d60e34b3abbc8313062c3b798ef8d901a07af3c" 1051 | 1052 | husky@^0.14.3: 1053 | version "0.14.3" 1054 | resolved "https://registry.yarnpkg.com/husky/-/husky-0.14.3.tgz#c69ed74e2d2779769a17ba8399b54ce0b63c12c3" 1055 | dependencies: 1056 | is-ci "^1.0.10" 1057 | normalize-path "^1.0.0" 1058 | strip-indent "^2.0.0" 1059 | 1060 | iconv-lite@^0.4.17: 1061 | version "0.4.19" 1062 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0a81be9a1603a082b" 1063 | 1064 | indent-string@^2.1.0: 1065 | version "2.1.0" 1066 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" 1067 | dependencies: 1068 | repeating "^2.0.0" 1069 | 1070 | indent-string@^3.0.0: 1071 | version "3.2.0" 1072 | resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.2.0.tgz#4a5fd6d27cc332f37e5419a504dbb837105c9289" 1073 | 1074 | inflight@^1.0.4: 1075 | version "1.0.6" 1076 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1077 | dependencies: 1078 | once "^1.3.0" 1079 | wrappy "1" 1080 | 1081 | inherits@2, inherits@^2.0.3, inherits@~2.0.3: 1082 | version "2.0.3" 1083 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 1084 | 1085 | ini@^1.3.2, ini@^1.3.4: 1086 | version "1.3.4" 1087 | resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.4.tgz#0537cb79daf59b59a1a517dff706c86ec039162e" 1088 | 1089 | inquirer@1.2.3, inquirer@^1.0.2: 1090 | version "1.2.3" 1091 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-1.2.3.tgz#4dec6f32f37ef7bb0b2ed3f1d1a5c3f545074918" 1092 | dependencies: 1093 | ansi-escapes "^1.1.0" 1094 | chalk "^1.0.0" 1095 | cli-cursor "^1.0.1" 1096 | cli-width "^2.0.0" 1097 | external-editor "^1.1.0" 1098 | figures "^1.3.5" 1099 | lodash "^4.3.0" 1100 | mute-stream "0.0.6" 1101 | pinkie-promise "^2.0.0" 1102 | run-async "^2.2.0" 1103 | rx "^4.1.0" 1104 | string-width "^1.0.1" 1105 | strip-ansi "^3.0.0" 1106 | through "^2.3.6" 1107 | 1108 | inquirer@^3.3.0: 1109 | version "3.3.0" 1110 | resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.3.0.tgz#9dd2f2ad765dcab1ff0443b491442a20ba227dc9" 1111 | dependencies: 1112 | ansi-escapes "^3.0.0" 1113 | chalk "^2.0.0" 1114 | cli-cursor "^2.1.0" 1115 | cli-width "^2.0.0" 1116 | external-editor "^2.0.4" 1117 | figures "^2.0.0" 1118 | lodash "^4.3.0" 1119 | mute-stream "0.0.7" 1120 | run-async "^2.2.0" 1121 | rx-lite "^4.0.8" 1122 | rx-lite-aggregates "^4.0.8" 1123 | string-width "^2.1.0" 1124 | strip-ansi "^4.0.0" 1125 | through "^2.3.6" 1126 | 1127 | interpret@^1.0.0: 1128 | version "1.0.4" 1129 | resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.0.4.tgz#820cdd588b868ffb191a809506d6c9c8f212b1b0" 1130 | 1131 | invert-kv@^1.0.0: 1132 | version "1.0.0" 1133 | resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" 1134 | 1135 | is-arrayish@^0.2.1: 1136 | version "0.2.1" 1137 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1138 | 1139 | is-buffer@^1.1.5: 1140 | version "1.1.5" 1141 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.5.tgz#1f3b26ef613b214b88cbca23cc6c01d87961eecc" 1142 | 1143 | is-builtin-module@^1.0.0: 1144 | version "1.0.0" 1145 | resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" 1146 | dependencies: 1147 | builtin-modules "^1.0.0" 1148 | 1149 | is-ci@^1.0.10: 1150 | version "1.0.10" 1151 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.0.10.tgz#f739336b2632365061a9d48270cd56ae3369318e" 1152 | dependencies: 1153 | ci-info "^1.0.0" 1154 | 1155 | is-dotfile@^1.0.0: 1156 | version "1.0.3" 1157 | resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" 1158 | 1159 | is-equal-shallow@^0.1.3: 1160 | version "0.1.3" 1161 | resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" 1162 | dependencies: 1163 | is-primitive "^2.0.0" 1164 | 1165 | is-extendable@^0.1.1: 1166 | version "0.1.1" 1167 | resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" 1168 | 1169 | is-extglob@^1.0.0: 1170 | version "1.0.0" 1171 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" 1172 | 1173 | is-extglob@^2.1.1: 1174 | version "2.1.1" 1175 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 1176 | 1177 | is-finite@^1.0.0: 1178 | version "1.0.2" 1179 | resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" 1180 | dependencies: 1181 | number-is-nan "^1.0.0" 1182 | 1183 | is-fullwidth-code-point@^1.0.0: 1184 | version "1.0.0" 1185 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" 1186 | dependencies: 1187 | number-is-nan "^1.0.0" 1188 | 1189 | is-fullwidth-code-point@^2.0.0: 1190 | version "2.0.0" 1191 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 1192 | 1193 | is-glob@^2.0.0, is-glob@^2.0.1: 1194 | version "2.0.1" 1195 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" 1196 | dependencies: 1197 | is-extglob "^1.0.0" 1198 | 1199 | is-glob@^4.0.0: 1200 | version "4.0.0" 1201 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.0.tgz#9521c76845cc2610a85203ddf080a958c2ffabc0" 1202 | dependencies: 1203 | is-extglob "^2.1.1" 1204 | 1205 | is-number@^2.1.0: 1206 | version "2.1.0" 1207 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" 1208 | dependencies: 1209 | kind-of "^3.0.2" 1210 | 1211 | is-number@^3.0.0: 1212 | version "3.0.0" 1213 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" 1214 | dependencies: 1215 | kind-of "^3.0.2" 1216 | 1217 | is-obj@^1.0.0, is-obj@^1.0.1: 1218 | version "1.0.1" 1219 | resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" 1220 | 1221 | is-posix-bracket@^0.1.0: 1222 | version "0.1.1" 1223 | resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" 1224 | 1225 | is-primitive@^2.0.0: 1226 | version "2.0.0" 1227 | resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 1228 | 1229 | is-promise@^2.1.0: 1230 | version "2.1.0" 1231 | resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" 1232 | 1233 | is-regexp@^1.0.0: 1234 | version "1.0.0" 1235 | resolved "https://registry.yarnpkg.com/is-regexp/-/is-regexp-1.0.0.tgz#fd2d883545c46bac5a633e7b9a09e87fa2cb5069" 1236 | 1237 | is-stream@^1.1.0: 1238 | version "1.1.0" 1239 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" 1240 | 1241 | is-subset@^0.1.1: 1242 | version "0.1.1" 1243 | resolved "https://registry.yarnpkg.com/is-subset/-/is-subset-0.1.1.tgz#8a59117d932de1de00f245fcdd39ce43f1e939a6" 1244 | 1245 | is-text-path@^1.0.0: 1246 | version "1.0.1" 1247 | resolved "https://registry.yarnpkg.com/is-text-path/-/is-text-path-1.0.1.tgz#4e1aa0fb51bfbcb3e92688001397202c1775b66e" 1248 | dependencies: 1249 | text-extensions "^1.0.0" 1250 | 1251 | is-utf8@^0.2.0: 1252 | version "0.2.1" 1253 | resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" 1254 | 1255 | is-windows@^0.2.0: 1256 | version "0.2.0" 1257 | resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-0.2.0.tgz#de1aa6d63ea29dd248737b69f1ff8b8002d2108c" 1258 | 1259 | isarray@1.0.0, isarray@~1.0.0: 1260 | version "1.0.0" 1261 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 1262 | 1263 | isexe@^2.0.0: 1264 | version "2.0.0" 1265 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1266 | 1267 | isobject@^2.0.0: 1268 | version "2.1.0" 1269 | resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" 1270 | dependencies: 1271 | isarray "1.0.0" 1272 | 1273 | isstream@0.1.x: 1274 | version "0.1.2" 1275 | resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 1276 | 1277 | jest-get-type@^21.2.0: 1278 | version "21.2.0" 1279 | resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-21.2.0.tgz#f6376ab9db4b60d81e39f30749c6c466f40d4a23" 1280 | 1281 | jest-validate@^21.1.0: 1282 | version "21.2.1" 1283 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-21.2.1.tgz#cc0cbca653cd54937ba4f2a111796774530dd3c7" 1284 | dependencies: 1285 | chalk "^2.0.1" 1286 | jest-get-type "^21.2.0" 1287 | leven "^2.1.0" 1288 | pretty-format "^21.2.1" 1289 | 1290 | js-tokens@^3.0.2: 1291 | version "3.0.2" 1292 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 1293 | 1294 | js-yaml@^3.4.3: 1295 | version "3.10.0" 1296 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.10.0.tgz#2e78441646bd4682e963f22b6e92823c309c62dc" 1297 | dependencies: 1298 | argparse "^1.0.7" 1299 | esprima "^4.0.0" 1300 | 1301 | jschardet@^1.4.2: 1302 | version "1.5.1" 1303 | resolved "https://registry.yarnpkg.com/jschardet/-/jschardet-1.5.1.tgz#c519f629f86b3a5bedba58a88d311309eec097f9" 1304 | 1305 | json-stringify-safe@^5.0.1: 1306 | version "5.0.1" 1307 | resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" 1308 | 1309 | jsonfile@^2.1.0: 1310 | version "2.4.0" 1311 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8" 1312 | optionalDependencies: 1313 | graceful-fs "^4.1.6" 1314 | 1315 | jsonfile@^4.0.0: 1316 | version "4.0.0" 1317 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" 1318 | optionalDependencies: 1319 | graceful-fs "^4.1.6" 1320 | 1321 | jsonparse@^1.2.0: 1322 | version "1.3.1" 1323 | resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.3.1.tgz#3f4dae4a91fac315f71062f8521cc239f1366280" 1324 | 1325 | kind-of@^3.0.2: 1326 | version "3.2.2" 1327 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" 1328 | dependencies: 1329 | is-buffer "^1.1.5" 1330 | 1331 | kind-of@^4.0.0: 1332 | version "4.0.0" 1333 | resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" 1334 | dependencies: 1335 | is-buffer "^1.1.5" 1336 | 1337 | klaw@^1.0.0: 1338 | version "1.3.1" 1339 | resolved "https://registry.yarnpkg.com/klaw/-/klaw-1.3.1.tgz#4088433b46b3b1ba259d78785d8e96f73ba02439" 1340 | optionalDependencies: 1341 | graceful-fs "^4.1.9" 1342 | 1343 | lazy-cache@^1.0.3: 1344 | version "1.0.4" 1345 | resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" 1346 | 1347 | lcid@^1.0.0: 1348 | version "1.0.0" 1349 | resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" 1350 | dependencies: 1351 | invert-kv "^1.0.0" 1352 | 1353 | leven@^2.1.0: 1354 | version "2.1.0" 1355 | resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" 1356 | 1357 | lint-staged@^4.2.3: 1358 | version "4.2.3" 1359 | resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-4.2.3.tgz#5a1f12256af06110b96225f109dbf215009a37a9" 1360 | dependencies: 1361 | app-root-path "^2.0.0" 1362 | chalk "^2.1.0" 1363 | cosmiconfig "^1.1.0" 1364 | execa "^0.8.0" 1365 | is-glob "^4.0.0" 1366 | jest-validate "^21.1.0" 1367 | listr "^0.12.0" 1368 | lodash "^4.17.4" 1369 | log-symbols "^2.0.0" 1370 | minimatch "^3.0.0" 1371 | npm-which "^3.0.1" 1372 | p-map "^1.1.1" 1373 | staged-git-files "0.0.4" 1374 | stringify-object "^3.2.0" 1375 | 1376 | listr-silent-renderer@^1.1.1: 1377 | version "1.1.1" 1378 | resolved "https://registry.yarnpkg.com/listr-silent-renderer/-/listr-silent-renderer-1.1.1.tgz#924b5a3757153770bf1a8e3fbf74b8bbf3f9242e" 1379 | 1380 | listr-update-renderer@^0.2.0: 1381 | version "0.2.0" 1382 | resolved "https://registry.yarnpkg.com/listr-update-renderer/-/listr-update-renderer-0.2.0.tgz#ca80e1779b4e70266807e8eed1ad6abe398550f9" 1383 | dependencies: 1384 | chalk "^1.1.3" 1385 | cli-truncate "^0.2.1" 1386 | elegant-spinner "^1.0.1" 1387 | figures "^1.7.0" 1388 | indent-string "^3.0.0" 1389 | log-symbols "^1.0.2" 1390 | log-update "^1.0.2" 1391 | strip-ansi "^3.0.1" 1392 | 1393 | listr-verbose-renderer@^0.4.0: 1394 | version "0.4.0" 1395 | resolved "https://registry.yarnpkg.com/listr-verbose-renderer/-/listr-verbose-renderer-0.4.0.tgz#44dc01bb0c34a03c572154d4d08cde9b1dc5620f" 1396 | dependencies: 1397 | chalk "^1.1.3" 1398 | cli-cursor "^1.0.2" 1399 | date-fns "^1.27.2" 1400 | figures "^1.7.0" 1401 | 1402 | listr@^0.12.0: 1403 | version "0.12.0" 1404 | resolved "https://registry.yarnpkg.com/listr/-/listr-0.12.0.tgz#6bce2c0f5603fa49580ea17cd6a00cc0e5fa451a" 1405 | dependencies: 1406 | chalk "^1.1.3" 1407 | cli-truncate "^0.2.1" 1408 | figures "^1.7.0" 1409 | indent-string "^2.1.0" 1410 | is-promise "^2.1.0" 1411 | is-stream "^1.1.0" 1412 | listr-silent-renderer "^1.1.1" 1413 | listr-update-renderer "^0.2.0" 1414 | listr-verbose-renderer "^0.4.0" 1415 | log-symbols "^1.0.2" 1416 | log-update "^1.0.2" 1417 | ora "^0.2.3" 1418 | p-map "^1.1.1" 1419 | rxjs "^5.0.0-beta.11" 1420 | stream-to-observable "^0.1.0" 1421 | strip-ansi "^3.0.1" 1422 | 1423 | load-json-file@^1.0.0: 1424 | version "1.1.0" 1425 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" 1426 | dependencies: 1427 | graceful-fs "^4.1.2" 1428 | parse-json "^2.2.0" 1429 | pify "^2.0.0" 1430 | pinkie-promise "^2.0.0" 1431 | strip-bom "^2.0.0" 1432 | 1433 | load-json-file@^2.0.0: 1434 | version "2.0.0" 1435 | resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" 1436 | dependencies: 1437 | graceful-fs "^4.1.2" 1438 | parse-json "^2.2.0" 1439 | pify "^2.0.0" 1440 | strip-bom "^3.0.0" 1441 | 1442 | locate-path@^2.0.0: 1443 | version "2.0.0" 1444 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 1445 | dependencies: 1446 | p-locate "^2.0.0" 1447 | path-exists "^3.0.0" 1448 | 1449 | lodash._reinterpolate@~3.0.0: 1450 | version "3.0.0" 1451 | resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d" 1452 | 1453 | lodash.camelcase@^4.3.0: 1454 | version "4.3.0" 1455 | resolved "https://registry.yarnpkg.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6" 1456 | 1457 | lodash.difference@^4.5.0: 1458 | version "4.5.0" 1459 | resolved "https://registry.yarnpkg.com/lodash.difference/-/lodash.difference-4.5.0.tgz#9ccb4e505d486b91651345772885a2df27fd017c" 1460 | 1461 | lodash.map@^4.5.1: 1462 | version "4.6.0" 1463 | resolved "https://registry.yarnpkg.com/lodash.map/-/lodash.map-4.6.0.tgz#771ec7839e3473d9c4cde28b19394c3562f4f6d3" 1464 | 1465 | lodash.pad@^4.1.0: 1466 | version "4.5.1" 1467 | resolved "https://registry.yarnpkg.com/lodash.pad/-/lodash.pad-4.5.1.tgz#4330949a833a7c8da22cc20f6a26c4d59debba70" 1468 | 1469 | lodash.padend@^4.1.0: 1470 | version "4.6.1" 1471 | resolved "https://registry.yarnpkg.com/lodash.padend/-/lodash.padend-4.6.1.tgz#53ccba047d06e158d311f45da625f4e49e6f166e" 1472 | 1473 | lodash.padstart@^4.1.0: 1474 | version "4.6.1" 1475 | resolved "https://registry.yarnpkg.com/lodash.padstart/-/lodash.padstart-4.6.1.tgz#d2e3eebff0d9d39ad50f5cbd1b52a7bce6bb611b" 1476 | 1477 | lodash.template@^4.0.2: 1478 | version "4.4.0" 1479 | resolved "https://registry.yarnpkg.com/lodash.template/-/lodash.template-4.4.0.tgz#e73a0385c8355591746e020b99679c690e68fba0" 1480 | dependencies: 1481 | lodash._reinterpolate "~3.0.0" 1482 | lodash.templatesettings "^4.0.0" 1483 | 1484 | lodash.templatesettings@^4.0.0: 1485 | version "4.1.0" 1486 | resolved "https://registry.yarnpkg.com/lodash.templatesettings/-/lodash.templatesettings-4.1.0.tgz#2b4d4e95ba440d915ff08bc899e4553666713316" 1487 | dependencies: 1488 | lodash._reinterpolate "~3.0.0" 1489 | 1490 | lodash.uniq@^4.5.0: 1491 | version "4.5.0" 1492 | resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" 1493 | 1494 | lodash@4.17.2: 1495 | version "4.17.2" 1496 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.2.tgz#34a3055babe04ce42467b607d700072c7ff6bf42" 1497 | 1498 | lodash@^3.10.1: 1499 | version "3.10.1" 1500 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-3.10.1.tgz#5bf45e8e49ba4189e17d482789dfd15bd140b7b6" 1501 | 1502 | lodash@^4.0.0, lodash@^4.17.4, lodash@^4.2.1, lodash@^4.3.0: 1503 | version "4.17.4" 1504 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae" 1505 | 1506 | log-symbols@^1.0.2: 1507 | version "1.0.2" 1508 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-1.0.2.tgz#376ff7b58ea3086a0f09facc74617eca501e1a18" 1509 | dependencies: 1510 | chalk "^1.0.0" 1511 | 1512 | log-symbols@^2.0.0: 1513 | version "2.1.0" 1514 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-2.1.0.tgz#f35fa60e278832b538dc4dddcbb478a45d3e3be6" 1515 | dependencies: 1516 | chalk "^2.0.1" 1517 | 1518 | log-update@^1.0.2: 1519 | version "1.0.2" 1520 | resolved "https://registry.yarnpkg.com/log-update/-/log-update-1.0.2.tgz#19929f64c4093d2d2e7075a1dad8af59c296b8d1" 1521 | dependencies: 1522 | ansi-escapes "^1.0.0" 1523 | cli-cursor "^1.0.2" 1524 | 1525 | longest@^1.0.1: 1526 | version "1.0.1" 1527 | resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" 1528 | 1529 | loud-rejection@^1.0.0: 1530 | version "1.6.0" 1531 | resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" 1532 | dependencies: 1533 | currently-unhandled "^0.4.1" 1534 | signal-exit "^3.0.0" 1535 | 1536 | lru-cache@^4.0.1: 1537 | version "4.1.1" 1538 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" 1539 | dependencies: 1540 | pseudomap "^1.0.2" 1541 | yallist "^2.1.2" 1542 | 1543 | map-obj@^1.0.0, map-obj@^1.0.1: 1544 | version "1.0.1" 1545 | resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" 1546 | 1547 | mem@^1.1.0: 1548 | version "1.1.0" 1549 | resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" 1550 | dependencies: 1551 | mimic-fn "^1.0.0" 1552 | 1553 | meow@^3.3.0: 1554 | version "3.7.0" 1555 | resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" 1556 | dependencies: 1557 | camelcase-keys "^2.0.0" 1558 | decamelize "^1.1.2" 1559 | loud-rejection "^1.0.0" 1560 | map-obj "^1.0.1" 1561 | minimist "^1.1.3" 1562 | normalize-package-data "^2.3.4" 1563 | object-assign "^4.0.1" 1564 | read-pkg-up "^1.0.1" 1565 | redent "^1.0.0" 1566 | trim-newlines "^1.0.0" 1567 | 1568 | merge@^1.2.0: 1569 | version "1.2.0" 1570 | resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.0.tgz#7531e39d4949c281a66b8c5a6e0265e8b05894da" 1571 | 1572 | micromatch@^2.3.7: 1573 | version "2.3.11" 1574 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" 1575 | dependencies: 1576 | arr-diff "^2.0.0" 1577 | array-unique "^0.2.1" 1578 | braces "^1.8.2" 1579 | expand-brackets "^0.1.4" 1580 | extglob "^0.3.1" 1581 | filename-regex "^2.0.0" 1582 | is-extglob "^1.0.0" 1583 | is-glob "^2.0.1" 1584 | kind-of "^3.0.2" 1585 | normalize-path "^2.0.1" 1586 | object.omit "^2.0.0" 1587 | parse-glob "^3.0.4" 1588 | regex-cache "^0.4.2" 1589 | 1590 | micromist@^1.0.1: 1591 | version "1.0.2" 1592 | resolved "https://registry.yarnpkg.com/micromist/-/micromist-1.0.2.tgz#41f84949a04c30cdc60a394d0cb06aaa08b86364" 1593 | dependencies: 1594 | lodash.camelcase "^4.3.0" 1595 | 1596 | mimic-fn@^1.0.0: 1597 | version "1.1.0" 1598 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.1.0.tgz#e667783d92e89dbd342818b5230b9d62a672ad18" 1599 | 1600 | minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.4: 1601 | version "3.0.4" 1602 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 1603 | dependencies: 1604 | brace-expansion "^1.1.7" 1605 | 1606 | minimist@0.0.8: 1607 | version "0.0.8" 1608 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 1609 | 1610 | minimist@1.2.0, minimist@^1.1.3, minimist@^1.2.0: 1611 | version "1.2.0" 1612 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" 1613 | 1614 | minimist@~0.0.1: 1615 | version "0.0.10" 1616 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" 1617 | 1618 | mkdirp@^0.5.1: 1619 | version "0.5.1" 1620 | resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 1621 | dependencies: 1622 | minimist "0.0.8" 1623 | 1624 | modify-values@^1.0.0: 1625 | version "1.0.0" 1626 | resolved "https://registry.yarnpkg.com/modify-values/-/modify-values-1.0.0.tgz#e2b6cdeb9ce19f99317a53722f3dbf5df5eaaab2" 1627 | 1628 | ms@2.0.0: 1629 | version "2.0.0" 1630 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" 1631 | 1632 | mute-stream@0.0.6: 1633 | version "0.0.6" 1634 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.6.tgz#48962b19e169fd1dfc240b3f1e7317627bbc47db" 1635 | 1636 | mute-stream@0.0.7: 1637 | version "0.0.7" 1638 | resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" 1639 | 1640 | normalize-package-data@^2.3.0, normalize-package-data@^2.3.2, normalize-package-data@^2.3.4, normalize-package-data@^2.3.5: 1641 | version "2.4.0" 1642 | resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" 1643 | dependencies: 1644 | hosted-git-info "^2.1.4" 1645 | is-builtin-module "^1.0.0" 1646 | semver "2 || 3 || 4 || 5" 1647 | validate-npm-package-license "^3.0.1" 1648 | 1649 | normalize-path@^1.0.0: 1650 | version "1.0.0" 1651 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-1.0.0.tgz#32d0e472f91ff345701c15a8311018d3b0a90379" 1652 | 1653 | normalize-path@^2.0.1: 1654 | version "2.1.1" 1655 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" 1656 | dependencies: 1657 | remove-trailing-separator "^1.0.1" 1658 | 1659 | npm-path@^2.0.2: 1660 | version "2.0.3" 1661 | resolved "https://registry.yarnpkg.com/npm-path/-/npm-path-2.0.3.tgz#15cff4e1c89a38da77f56f6055b24f975dfb2bbe" 1662 | dependencies: 1663 | which "^1.2.10" 1664 | 1665 | npm-run-path@^2.0.0: 1666 | version "2.0.2" 1667 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" 1668 | dependencies: 1669 | path-key "^2.0.0" 1670 | 1671 | npm-which@^3.0.1: 1672 | version "3.0.1" 1673 | resolved "https://registry.yarnpkg.com/npm-which/-/npm-which-3.0.1.tgz#9225f26ec3a285c209cae67c3b11a6b4ab7140aa" 1674 | dependencies: 1675 | commander "^2.9.0" 1676 | npm-path "^2.0.2" 1677 | which "^1.2.10" 1678 | 1679 | npmlog@^2.0.3: 1680 | version "2.0.4" 1681 | resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-2.0.4.tgz#98b52530f2514ca90d09ec5b22c8846722375692" 1682 | dependencies: 1683 | ansi "~0.3.1" 1684 | are-we-there-yet "~1.1.2" 1685 | gauge "~1.2.5" 1686 | 1687 | null-check@^1.0.0: 1688 | version "1.0.0" 1689 | resolved "https://registry.yarnpkg.com/null-check/-/null-check-1.0.0.tgz#977dffd7176012b9ec30d2a39db5cf72a0439edd" 1690 | 1691 | number-is-nan@^1.0.0: 1692 | version "1.0.1" 1693 | resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" 1694 | 1695 | object-assign@^4.0.1, object-assign@^4.1.0: 1696 | version "4.1.1" 1697 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1698 | 1699 | object.omit@^2.0.0: 1700 | version "2.0.1" 1701 | resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" 1702 | dependencies: 1703 | for-own "^0.1.4" 1704 | is-extendable "^0.1.1" 1705 | 1706 | once@^1.3.0: 1707 | version "1.4.0" 1708 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1709 | dependencies: 1710 | wrappy "1" 1711 | 1712 | onetime@^1.0.0: 1713 | version "1.1.0" 1714 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" 1715 | 1716 | onetime@^2.0.0: 1717 | version "2.0.1" 1718 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 1719 | dependencies: 1720 | mimic-fn "^1.0.0" 1721 | 1722 | optimist@^0.6.1: 1723 | version "0.6.1" 1724 | resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" 1725 | dependencies: 1726 | minimist "~0.0.1" 1727 | wordwrap "~0.0.2" 1728 | 1729 | ora@^0.2.3: 1730 | version "0.2.3" 1731 | resolved "https://registry.yarnpkg.com/ora/-/ora-0.2.3.tgz#37527d220adcd53c39b73571d754156d5db657a4" 1732 | dependencies: 1733 | chalk "^1.1.1" 1734 | cli-cursor "^1.0.2" 1735 | cli-spinners "^0.1.2" 1736 | object-assign "^4.0.1" 1737 | 1738 | ora@^1.3.0: 1739 | version "1.3.0" 1740 | resolved "https://registry.yarnpkg.com/ora/-/ora-1.3.0.tgz#80078dd2b92a934af66a3ad72a5b910694ede51a" 1741 | dependencies: 1742 | chalk "^1.1.1" 1743 | cli-cursor "^2.1.0" 1744 | cli-spinners "^1.0.0" 1745 | log-symbols "^1.0.2" 1746 | 1747 | os-homedir@^1.0.1: 1748 | version "1.0.2" 1749 | resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 1750 | 1751 | os-locale@^2.0.0: 1752 | version "2.1.0" 1753 | resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" 1754 | dependencies: 1755 | execa "^0.7.0" 1756 | lcid "^1.0.0" 1757 | mem "^1.1.0" 1758 | 1759 | os-shim@^0.1.2: 1760 | version "0.1.3" 1761 | resolved "https://registry.yarnpkg.com/os-shim/-/os-shim-0.1.3.tgz#6b62c3791cf7909ea35ed46e17658bb417cb3917" 1762 | 1763 | os-tmpdir@~1.0.1, os-tmpdir@~1.0.2: 1764 | version "1.0.2" 1765 | resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 1766 | 1767 | p-finally@^1.0.0: 1768 | version "1.0.0" 1769 | resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 1770 | 1771 | p-limit@^1.1.0: 1772 | version "1.1.0" 1773 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.1.0.tgz#b07ff2d9a5d88bec806035895a2bab66a27988bc" 1774 | 1775 | p-locate@^2.0.0: 1776 | version "2.0.0" 1777 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 1778 | dependencies: 1779 | p-limit "^1.1.0" 1780 | 1781 | p-map@^1.1.1: 1782 | version "1.2.0" 1783 | resolved "https://registry.yarnpkg.com/p-map/-/p-map-1.2.0.tgz#e4e94f311eabbc8633a1e79908165fca26241b6b" 1784 | 1785 | pad-right@^0.2.2: 1786 | version "0.2.2" 1787 | resolved "https://registry.yarnpkg.com/pad-right/-/pad-right-0.2.2.tgz#6fbc924045d244f2a2a244503060d3bfc6009774" 1788 | dependencies: 1789 | repeat-string "^1.5.2" 1790 | 1791 | parse-github-repo-url@^1.3.0: 1792 | version "1.4.1" 1793 | resolved "https://registry.yarnpkg.com/parse-github-repo-url/-/parse-github-repo-url-1.4.1.tgz#9e7d8bb252a6cb6ba42595060b7bf6df3dbc1f50" 1794 | 1795 | parse-glob@^3.0.4: 1796 | version "3.0.4" 1797 | resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" 1798 | dependencies: 1799 | glob-base "^0.3.0" 1800 | is-dotfile "^1.0.0" 1801 | is-extglob "^1.0.0" 1802 | is-glob "^2.0.0" 1803 | 1804 | parse-json@^2.2.0: 1805 | version "2.2.0" 1806 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" 1807 | dependencies: 1808 | error-ex "^1.2.0" 1809 | 1810 | parse-passwd@^1.0.0: 1811 | version "1.0.0" 1812 | resolved "https://registry.yarnpkg.com/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6" 1813 | 1814 | path-exists@2.1.0, path-exists@^2.0.0: 1815 | version "2.1.0" 1816 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" 1817 | dependencies: 1818 | pinkie-promise "^2.0.0" 1819 | 1820 | path-exists@^3.0.0: 1821 | version "3.0.0" 1822 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 1823 | 1824 | path-is-absolute@^1.0.0: 1825 | version "1.0.1" 1826 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1827 | 1828 | path-key@^2.0.0: 1829 | version "2.0.1" 1830 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 1831 | 1832 | path-parse@^1.0.5: 1833 | version "1.0.5" 1834 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.5.tgz#3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1" 1835 | 1836 | path-type@^1.0.0: 1837 | version "1.1.0" 1838 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" 1839 | dependencies: 1840 | graceful-fs "^4.1.2" 1841 | pify "^2.0.0" 1842 | pinkie-promise "^2.0.0" 1843 | 1844 | path-type@^2.0.0: 1845 | version "2.0.0" 1846 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" 1847 | dependencies: 1848 | pify "^2.0.0" 1849 | 1850 | pify@^2.0.0, pify@^2.3.0: 1851 | version "2.3.0" 1852 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" 1853 | 1854 | pinkie-promise@^2.0.0: 1855 | version "2.0.1" 1856 | resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" 1857 | dependencies: 1858 | pinkie "^2.0.0" 1859 | 1860 | pinkie@^2.0.0: 1861 | version "2.0.4" 1862 | resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" 1863 | 1864 | preserve@^0.2.0: 1865 | version "0.2.0" 1866 | resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" 1867 | 1868 | prettier@^1.7.4: 1869 | version "1.7.4" 1870 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.7.4.tgz#5e8624ae9363c80f95ec644584ecdf55d74f93fa" 1871 | 1872 | pretty-format@^21.2.1: 1873 | version "21.2.1" 1874 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-21.2.1.tgz#ae5407f3cf21066cd011aa1ba5fce7b6a2eddb36" 1875 | dependencies: 1876 | ansi-regex "^3.0.0" 1877 | ansi-styles "^3.2.0" 1878 | 1879 | prettyjson@^1.2.1: 1880 | version "1.2.1" 1881 | resolved "https://registry.yarnpkg.com/prettyjson/-/prettyjson-1.2.1.tgz#fcffab41d19cab4dfae5e575e64246619b12d289" 1882 | dependencies: 1883 | colors "^1.1.2" 1884 | minimist "^1.2.0" 1885 | 1886 | process-nextick-args@~1.0.6: 1887 | version "1.0.7" 1888 | resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" 1889 | 1890 | pseudomap@^1.0.2: 1891 | version "1.0.2" 1892 | resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" 1893 | 1894 | q@^1.4.1: 1895 | version "1.5.0" 1896 | resolved "https://registry.yarnpkg.com/q/-/q-1.5.0.tgz#dd01bac9d06d30e6f219aecb8253ee9ebdc308f1" 1897 | 1898 | randomatic@^1.1.3: 1899 | version "1.1.7" 1900 | resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-1.1.7.tgz#c7abe9cc8b87c0baa876b19fde83fd464797e38c" 1901 | dependencies: 1902 | is-number "^3.0.0" 1903 | kind-of "^4.0.0" 1904 | 1905 | read-pkg-up@^1.0.1: 1906 | version "1.0.1" 1907 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" 1908 | dependencies: 1909 | find-up "^1.0.0" 1910 | read-pkg "^1.0.0" 1911 | 1912 | read-pkg-up@^2.0.0: 1913 | version "2.0.0" 1914 | resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" 1915 | dependencies: 1916 | find-up "^2.0.0" 1917 | read-pkg "^2.0.0" 1918 | 1919 | read-pkg@^1.0.0, read-pkg@^1.1.0: 1920 | version "1.1.0" 1921 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" 1922 | dependencies: 1923 | load-json-file "^1.0.0" 1924 | normalize-package-data "^2.3.2" 1925 | path-type "^1.0.0" 1926 | 1927 | read-pkg@^2.0.0: 1928 | version "2.0.0" 1929 | resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" 1930 | dependencies: 1931 | load-json-file "^2.0.0" 1932 | normalize-package-data "^2.3.2" 1933 | path-type "^2.0.0" 1934 | 1935 | readable-stream@^2.0.6, readable-stream@^2.1.5, readable-stream@^2.2.2: 1936 | version "2.3.3" 1937 | resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.3.tgz#368f2512d79f9d46fdfc71349ae7878bbc1eb95c" 1938 | dependencies: 1939 | core-util-is "~1.0.0" 1940 | inherits "~2.0.3" 1941 | isarray "~1.0.0" 1942 | process-nextick-args "~1.0.6" 1943 | safe-buffer "~5.1.1" 1944 | string_decoder "~1.0.3" 1945 | util-deprecate "~1.0.1" 1946 | 1947 | rechoir@^0.6.2: 1948 | version "0.6.2" 1949 | resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" 1950 | dependencies: 1951 | resolve "^1.1.6" 1952 | 1953 | redent@^1.0.0: 1954 | version "1.0.0" 1955 | resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" 1956 | dependencies: 1957 | indent-string "^2.1.0" 1958 | strip-indent "^1.0.1" 1959 | 1960 | regex-cache@^0.4.2: 1961 | version "0.4.4" 1962 | resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" 1963 | dependencies: 1964 | is-equal-shallow "^0.1.3" 1965 | 1966 | remove-trailing-separator@^1.0.1: 1967 | version "1.1.0" 1968 | resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" 1969 | 1970 | repeat-element@^1.1.2: 1971 | version "1.1.2" 1972 | resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.2.tgz#ef089a178d1483baae4d93eb98b4f9e4e11d990a" 1973 | 1974 | repeat-string@^1.5.2: 1975 | version "1.6.1" 1976 | resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 1977 | 1978 | repeating@^2.0.0: 1979 | version "2.0.1" 1980 | resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" 1981 | dependencies: 1982 | is-finite "^1.0.0" 1983 | 1984 | require-directory@^2.1.1: 1985 | version "2.1.1" 1986 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 1987 | 1988 | require-from-string@^1.1.0: 1989 | version "1.2.1" 1990 | resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-1.2.1.tgz#529c9ccef27380adfec9a2f965b649bbee636418" 1991 | 1992 | require-main-filename@^1.0.1: 1993 | version "1.0.1" 1994 | resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" 1995 | 1996 | resolve-dir@^0.1.0: 1997 | version "0.1.1" 1998 | resolved "https://registry.yarnpkg.com/resolve-dir/-/resolve-dir-0.1.1.tgz#b219259a5602fac5c5c496ad894a6e8cc430261e" 1999 | dependencies: 2000 | expand-tilde "^1.2.2" 2001 | global-modules "^0.2.3" 2002 | 2003 | resolve@^1.1.6, resolve@^1.3.2: 2004 | version "1.4.0" 2005 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.4.0.tgz#a75be01c53da25d934a98ebd0e4c4a7312f92a86" 2006 | dependencies: 2007 | path-parse "^1.0.5" 2008 | 2009 | restore-cursor@^1.0.1: 2010 | version "1.0.1" 2011 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" 2012 | dependencies: 2013 | exit-hook "^1.0.0" 2014 | onetime "^1.0.0" 2015 | 2016 | restore-cursor@^2.0.0: 2017 | version "2.0.0" 2018 | resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 2019 | dependencies: 2020 | onetime "^2.0.0" 2021 | signal-exit "^3.0.2" 2022 | 2023 | right-align@^0.1.1: 2024 | version "0.1.3" 2025 | resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" 2026 | dependencies: 2027 | align-text "^0.1.1" 2028 | 2029 | right-pad@^1.0.1: 2030 | version "1.0.1" 2031 | resolved "https://registry.yarnpkg.com/right-pad/-/right-pad-1.0.1.tgz#8ca08c2cbb5b55e74dafa96bf7fd1a27d568c8d0" 2032 | 2033 | rimraf@^2.6.2: 2034 | version "2.6.2" 2035 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.2.tgz#2ed8150d24a16ea8651e6d6ef0f47c4158ce7a36" 2036 | dependencies: 2037 | glob "^7.0.5" 2038 | 2039 | run-async@^2.2.0: 2040 | version "2.3.0" 2041 | resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" 2042 | dependencies: 2043 | is-promise "^2.1.0" 2044 | 2045 | rx-lite-aggregates@^4.0.8: 2046 | version "4.0.8" 2047 | resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be" 2048 | dependencies: 2049 | rx-lite "*" 2050 | 2051 | rx-lite@*, rx-lite@^4.0.8: 2052 | version "4.0.8" 2053 | resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444" 2054 | 2055 | rx@^4.1.0: 2056 | version "4.1.0" 2057 | resolved "https://registry.yarnpkg.com/rx/-/rx-4.1.0.tgz#a5f13ff79ef3b740fe30aa803fb09f98805d4782" 2058 | 2059 | rxjs@^5.0.0-beta.11: 2060 | version "5.4.3" 2061 | resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-5.4.3.tgz#0758cddee6033d68e0fd53676f0f3596ce3d483f" 2062 | dependencies: 2063 | symbol-observable "^1.0.1" 2064 | 2065 | safe-buffer@~5.1.0, safe-buffer@~5.1.1: 2066 | version "5.1.1" 2067 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" 2068 | 2069 | "semver@2 || 3 || 4 || 5", semver@^5.0.1, semver@^5.1.0, semver@^5.3.0: 2070 | version "5.4.1" 2071 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" 2072 | 2073 | set-blocking@^2.0.0: 2074 | version "2.0.0" 2075 | resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 2076 | 2077 | shebang-command@^1.2.0: 2078 | version "1.2.0" 2079 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 2080 | dependencies: 2081 | shebang-regex "^1.0.0" 2082 | 2083 | shebang-regex@^1.0.0: 2084 | version "1.0.0" 2085 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 2086 | 2087 | shelljs@0.7.6: 2088 | version "0.7.6" 2089 | resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.7.6.tgz#379cccfb56b91c8601e4793356eb5382924de9ad" 2090 | dependencies: 2091 | glob "^7.0.0" 2092 | interpret "^1.0.0" 2093 | rechoir "^0.6.2" 2094 | 2095 | signal-exit@^3.0.0, signal-exit@^3.0.2: 2096 | version "3.0.2" 2097 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" 2098 | 2099 | slice-ansi@0.0.4: 2100 | version "0.0.4" 2101 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" 2102 | 2103 | source-map@^0.4.4: 2104 | version "0.4.4" 2105 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.4.4.tgz#eba4f5da9c0dc999de68032d8b4f76173652036b" 2106 | dependencies: 2107 | amdefine ">=0.0.4" 2108 | 2109 | source-map@~0.5.1: 2110 | version "0.5.7" 2111 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 2112 | 2113 | spawn-sync@^1.0.15: 2114 | version "1.0.15" 2115 | resolved "https://registry.yarnpkg.com/spawn-sync/-/spawn-sync-1.0.15.tgz#b00799557eb7fb0c8376c29d44e8a1ea67e57476" 2116 | dependencies: 2117 | concat-stream "^1.4.7" 2118 | os-shim "^0.1.2" 2119 | 2120 | spdx-correct@~1.0.0: 2121 | version "1.0.2" 2122 | resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40" 2123 | dependencies: 2124 | spdx-license-ids "^1.0.2" 2125 | 2126 | spdx-expression-parse@~1.0.0: 2127 | version "1.0.4" 2128 | resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c" 2129 | 2130 | spdx-license-ids@^1.0.2: 2131 | version "1.2.2" 2132 | resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57" 2133 | 2134 | split2@^2.0.0: 2135 | version "2.2.0" 2136 | resolved "https://registry.yarnpkg.com/split2/-/split2-2.2.0.tgz#186b2575bcf83e85b7d18465756238ee4ee42493" 2137 | dependencies: 2138 | through2 "^2.0.2" 2139 | 2140 | split@^1.0.0: 2141 | version "1.0.1" 2142 | resolved "https://registry.yarnpkg.com/split/-/split-1.0.1.tgz#605bd9be303aa59fb35f9229fbea0ddec9ea07d9" 2143 | dependencies: 2144 | through "2" 2145 | 2146 | sprintf-js@~1.0.2: 2147 | version "1.0.3" 2148 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2149 | 2150 | stack-trace@0.0.x: 2151 | version "0.0.10" 2152 | resolved "https://registry.yarnpkg.com/stack-trace/-/stack-trace-0.0.10.tgz#547c70b347e8d32b4e108ea1a2a159e5fdde19c0" 2153 | 2154 | staged-git-files@0.0.4: 2155 | version "0.0.4" 2156 | resolved "https://registry.yarnpkg.com/staged-git-files/-/staged-git-files-0.0.4.tgz#d797e1b551ca7a639dec0237dc6eb4bb9be17d35" 2157 | 2158 | standard-version@^4.2.0: 2159 | version "4.2.0" 2160 | resolved "https://registry.yarnpkg.com/standard-version/-/standard-version-4.2.0.tgz#3017e8c5ced2a92db7501790255c3ba85157375d" 2161 | dependencies: 2162 | chalk "^1.1.3" 2163 | conventional-changelog "^1.1.0" 2164 | conventional-recommended-bump "^1.0.0" 2165 | figures "^1.5.0" 2166 | fs-access "^1.0.0" 2167 | semver "^5.1.0" 2168 | yargs "^8.0.1" 2169 | 2170 | stream-to-observable@^0.1.0: 2171 | version "0.1.0" 2172 | resolved "https://registry.yarnpkg.com/stream-to-observable/-/stream-to-observable-0.1.0.tgz#45bf1d9f2d7dc09bed81f1c307c430e68b84cffe" 2173 | 2174 | string-width@^1.0.1: 2175 | version "1.0.2" 2176 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" 2177 | dependencies: 2178 | code-point-at "^1.0.0" 2179 | is-fullwidth-code-point "^1.0.0" 2180 | strip-ansi "^3.0.0" 2181 | 2182 | string-width@^2.0.0, string-width@^2.1.0: 2183 | version "2.1.1" 2184 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 2185 | dependencies: 2186 | is-fullwidth-code-point "^2.0.0" 2187 | strip-ansi "^4.0.0" 2188 | 2189 | string_decoder@~1.0.3: 2190 | version "1.0.3" 2191 | resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.0.3.tgz#0fc67d7c141825de94282dd536bec6b9bce860ab" 2192 | dependencies: 2193 | safe-buffer "~5.1.0" 2194 | 2195 | stringify-object@^3.2.0: 2196 | version "3.2.1" 2197 | resolved "https://registry.yarnpkg.com/stringify-object/-/stringify-object-3.2.1.tgz#2720c2eff940854c819f6ee252aaeb581f30624d" 2198 | dependencies: 2199 | get-own-enumerable-property-symbols "^2.0.1" 2200 | is-obj "^1.0.1" 2201 | is-regexp "^1.0.0" 2202 | 2203 | strip-ansi@^3.0.0, strip-ansi@^3.0.1: 2204 | version "3.0.1" 2205 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" 2206 | dependencies: 2207 | ansi-regex "^2.0.0" 2208 | 2209 | strip-ansi@^4.0.0: 2210 | version "4.0.0" 2211 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 2212 | dependencies: 2213 | ansi-regex "^3.0.0" 2214 | 2215 | strip-bom@^2.0.0: 2216 | version "2.0.0" 2217 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" 2218 | dependencies: 2219 | is-utf8 "^0.2.0" 2220 | 2221 | strip-bom@^3.0.0: 2222 | version "3.0.0" 2223 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 2224 | 2225 | strip-eof@^1.0.0: 2226 | version "1.0.0" 2227 | resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" 2228 | 2229 | strip-indent@^1.0.1: 2230 | version "1.0.1" 2231 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" 2232 | dependencies: 2233 | get-stdin "^4.0.1" 2234 | 2235 | strip-indent@^2.0.0: 2236 | version "2.0.0" 2237 | resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-2.0.0.tgz#5ef8db295d01e6ed6cbf7aab96998d7822527b68" 2238 | 2239 | strip-json-comments@2.0.1: 2240 | version "2.0.1" 2241 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 2242 | 2243 | supports-color@^2.0.0: 2244 | version "2.0.0" 2245 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" 2246 | 2247 | supports-color@^4.0.0: 2248 | version "4.4.0" 2249 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.4.0.tgz#883f7ddabc165142b2a61427f3352ded195d1a3e" 2250 | dependencies: 2251 | has-flag "^2.0.0" 2252 | 2253 | symbol-observable@^1.0.1: 2254 | version "1.0.4" 2255 | resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.4.tgz#29bf615d4aa7121bdd898b22d4b3f9bc4e2aa03d" 2256 | 2257 | tabtab@^2.2.2: 2258 | version "2.2.2" 2259 | resolved "https://registry.yarnpkg.com/tabtab/-/tabtab-2.2.2.tgz#7a047f143b010b4cbd31f857e82961512cbf4e14" 2260 | dependencies: 2261 | debug "^2.2.0" 2262 | inquirer "^1.0.2" 2263 | lodash.difference "^4.5.0" 2264 | lodash.uniq "^4.5.0" 2265 | minimist "^1.2.0" 2266 | mkdirp "^0.5.1" 2267 | npmlog "^2.0.3" 2268 | object-assign "^4.1.0" 2269 | 2270 | text-extensions@^1.0.0: 2271 | version "1.7.0" 2272 | resolved "https://registry.yarnpkg.com/text-extensions/-/text-extensions-1.7.0.tgz#faaaba2625ed746d568a23e4d0aacd9bf08a8b39" 2273 | 2274 | through2@^2.0.0, through2@^2.0.2: 2275 | version "2.0.3" 2276 | resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.3.tgz#0004569b37c7c74ba39c43f3ced78d1ad94140be" 2277 | dependencies: 2278 | readable-stream "^2.1.5" 2279 | xtend "~4.0.1" 2280 | 2281 | through@2, "through@>=2.2.7 <3", through@^2.3.6: 2282 | version "2.3.8" 2283 | resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 2284 | 2285 | tmp@^0.0.29: 2286 | version "0.0.29" 2287 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.29.tgz#f25125ff0dd9da3ccb0c2dd371ee1288bb9128c0" 2288 | dependencies: 2289 | os-tmpdir "~1.0.1" 2290 | 2291 | tmp@^0.0.33: 2292 | version "0.0.33" 2293 | resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" 2294 | dependencies: 2295 | os-tmpdir "~1.0.2" 2296 | 2297 | trim-newlines@^1.0.0: 2298 | version "1.0.0" 2299 | resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" 2300 | 2301 | trim-off-newlines@^1.0.0: 2302 | version "1.0.1" 2303 | resolved "https://registry.yarnpkg.com/trim-off-newlines/-/trim-off-newlines-1.0.1.tgz#9f9ba9d9efa8764c387698bcbfeb2c848f11adb3" 2304 | 2305 | tslib@^1.7.1: 2306 | version "1.7.1" 2307 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.7.1.tgz#bc8004164691923a79fe8378bbeb3da2017538ec" 2308 | 2309 | tslint-config-prettier@^1.5.0: 2310 | version "1.5.0" 2311 | resolved "https://registry.yarnpkg.com/tslint-config-prettier/-/tslint-config-prettier-1.5.0.tgz#76645425edcc34d9b6835ba58266eaf90fdbfeda" 2312 | 2313 | tslint@^5.7.0: 2314 | version "5.7.0" 2315 | resolved "https://registry.yarnpkg.com/tslint/-/tslint-5.7.0.tgz#c25e0d0c92fa1201c2bc30e844e08e682b4f3552" 2316 | dependencies: 2317 | babel-code-frame "^6.22.0" 2318 | colors "^1.1.2" 2319 | commander "^2.9.0" 2320 | diff "^3.2.0" 2321 | glob "^7.1.1" 2322 | minimatch "^3.0.4" 2323 | resolve "^1.3.2" 2324 | semver "^5.3.0" 2325 | tslib "^1.7.1" 2326 | tsutils "^2.8.1" 2327 | 2328 | tsutils@^2.8.1: 2329 | version "2.11.1" 2330 | resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-2.11.1.tgz#103dff3fa508aff5649c16dc4e6dd45dc41dbc62" 2331 | dependencies: 2332 | tslib "^1.7.1" 2333 | 2334 | typedarray@^0.0.6: 2335 | version "0.0.6" 2336 | resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" 2337 | 2338 | typescript@^2.5.3: 2339 | version "2.5.3" 2340 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-2.5.3.tgz#df3dcdc38f3beb800d4bc322646b04a3f6ca7f0d" 2341 | 2342 | uglify-js@^2.6: 2343 | version "2.8.29" 2344 | resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" 2345 | dependencies: 2346 | source-map "~0.5.1" 2347 | yargs "~3.10.0" 2348 | optionalDependencies: 2349 | uglify-to-browserify "~1.0.0" 2350 | 2351 | uglify-to-browserify@~1.0.0: 2352 | version "1.0.2" 2353 | resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" 2354 | 2355 | universalify@^0.1.0: 2356 | version "0.1.1" 2357 | resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.1.tgz#fa71badd4437af4c148841e3b3b165f9e9e590b7" 2358 | 2359 | util-deprecate@~1.0.1: 2360 | version "1.0.2" 2361 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" 2362 | 2363 | validate-npm-package-license@^3.0.1: 2364 | version "3.0.1" 2365 | resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc" 2366 | dependencies: 2367 | spdx-correct "~1.0.0" 2368 | spdx-expression-parse "~1.0.0" 2369 | 2370 | which-module@^2.0.0: 2371 | version "2.0.0" 2372 | resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 2373 | 2374 | which@^1.2.10, which@^1.2.12, which@^1.2.9: 2375 | version "1.3.0" 2376 | resolved "https://registry.yarnpkg.com/which/-/which-1.3.0.tgz#ff04bdfc010ee547d780bec38e1ac1c2777d253a" 2377 | dependencies: 2378 | isexe "^2.0.0" 2379 | 2380 | window-size@0.1.0: 2381 | version "0.1.0" 2382 | resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" 2383 | 2384 | winston@^2.3.1: 2385 | version "2.4.0" 2386 | resolved "https://registry.yarnpkg.com/winston/-/winston-2.4.0.tgz#808050b93d52661ed9fb6c26b3f0c826708b0aee" 2387 | dependencies: 2388 | async "~1.0.0" 2389 | colors "1.0.x" 2390 | cycle "1.0.x" 2391 | eyes "0.1.x" 2392 | isstream "0.1.x" 2393 | stack-trace "0.0.x" 2394 | 2395 | word-wrap@^1.0.3: 2396 | version "1.2.3" 2397 | resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" 2398 | 2399 | wordwrap@0.0.2: 2400 | version "0.0.2" 2401 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" 2402 | 2403 | wordwrap@~0.0.2: 2404 | version "0.0.3" 2405 | resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" 2406 | 2407 | wrap-ansi@^2.0.0: 2408 | version "2.1.0" 2409 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" 2410 | dependencies: 2411 | string-width "^1.0.1" 2412 | strip-ansi "^3.0.1" 2413 | 2414 | wrappy@1: 2415 | version "1.0.2" 2416 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2417 | 2418 | xtend@~4.0.1: 2419 | version "4.0.1" 2420 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" 2421 | 2422 | y18n@^3.2.1: 2423 | version "3.2.1" 2424 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" 2425 | 2426 | yallist@^2.1.2: 2427 | version "2.1.2" 2428 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" 2429 | 2430 | yargs-parser@^7.0.0: 2431 | version "7.0.0" 2432 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9" 2433 | dependencies: 2434 | camelcase "^4.1.0" 2435 | 2436 | yargs@^8.0.1: 2437 | version "8.0.2" 2438 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-8.0.2.tgz#6299a9055b1cefc969ff7e79c1d918dceb22c360" 2439 | dependencies: 2440 | camelcase "^4.1.0" 2441 | cliui "^3.2.0" 2442 | decamelize "^1.1.1" 2443 | get-caller-file "^1.0.1" 2444 | os-locale "^2.0.0" 2445 | read-pkg-up "^2.0.0" 2446 | require-directory "^2.1.1" 2447 | require-main-filename "^1.0.1" 2448 | set-blocking "^2.0.0" 2449 | string-width "^2.0.0" 2450 | which-module "^2.0.0" 2451 | y18n "^3.2.1" 2452 | yargs-parser "^7.0.0" 2453 | 2454 | yargs@~3.10.0: 2455 | version "3.10.0" 2456 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" 2457 | dependencies: 2458 | camelcase "^1.0.2" 2459 | cliui "^2.1.0" 2460 | decamelize "^1.0.0" 2461 | window-size "0.1.0" 2462 | --------------------------------------------------------------------------------