@@ -4,8 +4,6 @@ var path = require('path');
4
4
var events = require ( 'events' ) ;
5
5
var assert = require ( 'assert' ) ;
6
6
var _ = require ( 'lodash' ) ;
7
- var _s = require ( 'underscore.string' ) ;
8
- var async = require ( 'async' ) ;
9
7
var findUp = require ( 'find-up' ) ;
10
8
var readPkgUp = require ( 'read-pkg-up' ) ;
11
9
var chalk = require ( 'chalk' ) ;
@@ -16,32 +14,25 @@ var through = require('through2');
16
14
var userHome = require ( 'user-home' ) ;
17
15
var GruntfileEditor = require ( 'gruntfile-editor' ) ;
18
16
var FileEditor = require ( 'mem-fs-editor' ) ;
19
- var wiring = require ( 'html-wiring' ) ;
20
17
var pathIsAbsolute = require ( 'path-is-absolute' ) ;
21
18
var pathExists = require ( 'path-exists' ) ;
22
19
var Conflicter = require ( './util/conflicter' ) ;
23
20
var Storage = require ( './util/storage' ) ;
24
- var deprecate = require ( './util/deprecate' ) ;
25
21
var promptSuggestion = require ( './util/prompt-suggestion' ) ;
26
22
var debug = require ( 'debug' ) ( 'yeoman:generator' ) ;
27
23
28
24
/**
29
25
* The `Base` class provides the common API shared by all generators.
30
- * It define options, arguments, hooks, file, prompt, log, API, etc.
26
+ * It define options, arguments, file, prompt, log, API, etc.
31
27
*
32
28
* It mixes into its prototype all the methods found in the `actions/` mixins.
33
29
*
34
30
* Every generator should extend this base class.
35
31
*
36
32
* @constructor
37
33
* @mixes actions/actions
38
- * @mixes actions/fetch
39
- * @mixes actions/file
40
34
* @mixes actions/install
41
- * @mixes actions/invoke
42
35
* @mixes actions/spawn_command
43
- * @mixes actions/string
44
- * @mixes actions/remote
45
36
* @mixes actions/user
46
37
* @mixes actions/help
47
38
* @mixes nodejs/EventEmitter
@@ -79,7 +70,6 @@ var Base = module.exports = function Base(args, options) {
79
70
this . _args = args || [ ] ;
80
71
this . _options = { } ;
81
72
this . _arguments = [ ] ;
82
- this . _hooks = [ ] ;
83
73
this . _composedWith = [ ] ;
84
74
this . _transformStreams = [ ] ;
85
75
@@ -140,19 +130,6 @@ var Base = module.exports = function Base(args, options) {
140
130
this . destinationRoot ( rootPath ) ;
141
131
}
142
132
143
- var deprecatedFileUtils = deprecate . log . bind ( null , [
144
- '#src() and #dest() are deprecated. Please read the documentation to learn about' ,
145
- 'the new ways of handling files. http://yeoman.io/authoring/file-system.html'
146
- ] . join ( '\n' ) ) ;
147
-
148
- Object . defineProperty ( this , 'src' , { get : deprecatedFileUtils } ) ;
149
- Object . defineProperty ( this , 'dest' , { get : deprecatedFileUtils } ) ;
150
- Object . defineProperty ( this , '_' , {
151
- get : deprecate . log . bind ( null , [
152
- '#_ is deprecated. Require your own version of' , chalk . cyan ( 'Lodash' ) , 'or' , chalk . cyan ( 'underscore.string' )
153
- ] . join ( ' ' ) )
154
- } ) ;
155
-
156
133
this . appname = this . determineAppname ( ) ;
157
134
this . config = this . _getStorage ( ) ;
158
135
this . _globalConfig = this . _getGlobalStorage ( ) ;
@@ -192,36 +169,10 @@ util.inherits(Base, events.EventEmitter);
192
169
193
170
// Mixin the actions modules
194
171
_ . extend ( Base . prototype , require ( './actions/actions' ) ) ;
195
- _ . extend ( Base . prototype , require ( './actions/file' ) ) ;
196
172
_ . extend ( Base . prototype , require ( './actions/install' ) ) ;
197
173
_ . extend ( Base . prototype , require ( './actions/help' ) ) ;
198
174
_ . extend ( Base . prototype , require ( './actions/spawn_command' ) ) ;
199
-
200
- // Deprecated modules and functions
201
- _ . extend ( Base . prototype , deprecate . object ( 'this.<%= name %>() is deprecated. Use require("html-wiring").<%= name %>() instead.' , wiring ) ) ;
202
- var deprecatedRemote = function ( ) {
203
- deprecate . log ( 'Remotes functions are deprecated. See https://github.com/yeoman/generator/issues/949 for update guide.' ) ;
204
- } ;
205
- Base . prototype . remote = deprecatedRemote ;
206
- Base . prototype . remoteDir = deprecatedRemote ;
207
- Base . prototype . fetch = deprecatedRemote ;
208
- Base . prototype . extract = deprecatedRemote ;
209
- Base . prototype . tarball = deprecatedRemote ;
210
-
211
175
Base . prototype . user = require ( './actions/user' ) ;
212
- Base . prototype . invoke = deprecate (
213
- 'generator#invoke() is deprecated. Use generator#composeWith() - see http://yeoman.io/authoring/composability.html' ,
214
- require ( './actions/invoke' )
215
- ) ;
216
-
217
- // TODO: Remove before 1.0.0
218
- // DEPRECATED: Use the module directly
219
- Base . prototype . welcome = deprecate (
220
- 'Generator#welcome() is deprecated. Instead, `require("yeoman-welcome")` directly.' ,
221
- function ( ) {
222
- console . log ( require ( 'yeoman-welcome' ) ) ;
223
- }
224
- ) ;
225
176
226
177
/**
227
178
* Prompt user to answer questions. The signature of this method is the same as {@link https://github.com/SBoudrias/Inquirer.js Inquirer.js}
@@ -498,110 +449,10 @@ Base.prototype.run = function run(cb) {
498
449
} . bind ( this ) ) ;
499
450
} . bind ( this ) ) ;
500
451
501
- this . on ( 'end' , function ( ) {
502
- debug ( 'Running the hooked generators' ) ;
503
- this . runHooks ( ) ;
504
- } ) ;
505
-
506
452
_ . invokeMap ( this . _composedWith , 'run' ) ;
507
453
return this ;
508
454
} ;
509
455
510
- /**
511
- * Goes through all registered hooks, invoking them in series.
512
- *
513
- * @param {Function } [cb]
514
- */
515
-
516
- Base . prototype . runHooks = function runHooks ( cb ) {
517
- cb = _ . isFunction ( cb ) ? cb : function ( ) { } ;
518
-
519
- var setupInvoke = function ( hook ) {
520
- var resolved = this . defaultFor ( hook . name ) ;
521
- var options = _ . clone ( hook . options || this . options ) ;
522
- options . args = _ . clone ( hook . args || this . args ) ;
523
-
524
- return function ( next ) {
525
- this . invoke ( resolved + ( hook . as ? ':' + hook . as : '' ) , options , next ) ;
526
- } . bind ( this ) ;
527
- } . bind ( this ) ;
528
-
529
- async . series ( this . _hooks . map ( setupInvoke ) , cb ) ;
530
- return this ;
531
- } ;
532
-
533
- /**
534
- * Registers a hook to invoke when this generator runs.
535
- *
536
- * A generator with a namespace based on the value supplied by the user
537
- * to the given option named `name`. An option is created when this method is
538
- * invoked and you can set a hash to customize it.
539
- *
540
- * Must be called prior to running the generator (shouldn't be called within
541
- * a generator "step" - top-level methods).
542
- *
543
- * ### Options:
544
- *
545
- * - `as` The context value to use when runing the hooked generator
546
- * - `args` The array of positional arguments to init and run the generator with
547
- * - `options` An object containing a nested `options` property with the hash of options
548
- * to use to init and run the generator with
549
- *
550
- * ### Examples:
551
- *
552
- * // $ yo webapp --test-framework jasmine
553
- * this.hookFor('test-framework');
554
- * // => registers the `jasmine` hook
555
- *
556
- * // $ yo mygen:subgen --myargument
557
- * this.hookFor('mygen', {
558
- * as: 'subgen',
559
- * options: {
560
- * options: {
561
- * 'myargument': true
562
- * }
563
- * }
564
- * }
565
- *
566
- * @deprecated use `#composeWith()` instead.
567
- * @param {String } name
568
- * @param {Object } config
569
- */
570
-
571
- Base . prototype . hookFor = deprecate (
572
- 'generator#hookFor() is deprecated. Use generator#composeWith() - see http://yeoman.io/authoring/composability.html' ,
573
- function ( name , config ) {
574
- config = config || { } ;
575
-
576
- // enforce use of hookFor during instantiation
577
- assert ( ! this . _running , 'hookFor can only be used inside the constructor function' ) ;
578
-
579
- // add the corresponding option to this class, so that we output these hooks
580
- // in help
581
- this . option ( name , {
582
- desc : _s . humanize ( name ) + ' to be invoked' ,
583
- default : this . options [ name ] || ''
584
- } ) ;
585
-
586
- this . _hooks . push ( _ . defaults ( config , {
587
- name : name
588
- } ) ) ;
589
-
590
- return this ;
591
- }
592
- ) ;
593
-
594
- /**
595
- * Return the default value for the option name.
596
- *
597
- * @deprecated
598
- * @param {String } name
599
- */
600
-
601
- Base . prototype . defaultFor = function defaultFor ( name ) {
602
- return this . options [ name ] || name ;
603
- } ;
604
-
605
456
/**
606
457
* Compose this generator with another one.
607
458
* @param {String } namespace The generator namespace to compose with
0 commit comments