Skip to content

Commit 49ce5f3

Browse files
committedNov 25, 2016
Remove deprecated modules
1 parent f3fb1d5 commit 49ce5f3

File tree

14 files changed

+16
-4880
lines changed

14 files changed

+16
-4880
lines changed
 

‎lib/actions/file.js

-72
This file was deleted.

‎lib/actions/help.js

+3-12
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ function formatArg(argItem) {
6262
}
6363

6464
/**
65-
* Output usage information for this given generator, depending on its arguments,
66-
* options or hooks.
65+
* Output usage information for this given generator, depending on its arguments
66+
* or options.
6767
*/
6868

6969
help.usage = function usage() {
@@ -125,16 +125,7 @@ help.optionsHelp = function optionsHelp() {
125125
return el.hide;
126126
});
127127

128-
var hookOpts = this._hooks.map(function (hook) {
129-
return hook.generator && hook.generator._options;
130-
}).reduce(function (a, b) {
131-
a = a.concat(b);
132-
return a;
133-
}, []).filter(function (opts) {
134-
return opts && opts.name !== 'help';
135-
});
136-
137-
var rows = options.concat(hookOpts).map(function (opt) {
128+
var rows = options.map(function (opt) {
138129
var defaults = opt.default;
139130

140131
return [

‎lib/actions/invoke.js

-38
This file was deleted.

‎lib/base.js

+1-150
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ var path = require('path');
44
var events = require('events');
55
var assert = require('assert');
66
var _ = require('lodash');
7-
var _s = require('underscore.string');
8-
var async = require('async');
97
var findUp = require('find-up');
108
var readPkgUp = require('read-pkg-up');
119
var chalk = require('chalk');
@@ -16,32 +14,25 @@ var through = require('through2');
1614
var userHome = require('user-home');
1715
var GruntfileEditor = require('gruntfile-editor');
1816
var FileEditor = require('mem-fs-editor');
19-
var wiring = require('html-wiring');
2017
var pathIsAbsolute = require('path-is-absolute');
2118
var pathExists = require('path-exists');
2219
var Conflicter = require('./util/conflicter');
2320
var Storage = require('./util/storage');
24-
var deprecate = require('./util/deprecate');
2521
var promptSuggestion = require('./util/prompt-suggestion');
2622
var debug = require('debug')('yeoman:generator');
2723

2824
/**
2925
* 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.
3127
*
3228
* It mixes into its prototype all the methods found in the `actions/` mixins.
3329
*
3430
* Every generator should extend this base class.
3531
*
3632
* @constructor
3733
* @mixes actions/actions
38-
* @mixes actions/fetch
39-
* @mixes actions/file
4034
* @mixes actions/install
41-
* @mixes actions/invoke
4235
* @mixes actions/spawn_command
43-
* @mixes actions/string
44-
* @mixes actions/remote
4536
* @mixes actions/user
4637
* @mixes actions/help
4738
* @mixes nodejs/EventEmitter
@@ -79,7 +70,6 @@ var Base = module.exports = function Base(args, options) {
7970
this._args = args || [];
8071
this._options = {};
8172
this._arguments = [];
82-
this._hooks = [];
8373
this._composedWith = [];
8474
this._transformStreams = [];
8575

@@ -140,19 +130,6 @@ var Base = module.exports = function Base(args, options) {
140130
this.destinationRoot(rootPath);
141131
}
142132

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-
156133
this.appname = this.determineAppname();
157134
this.config = this._getStorage();
158135
this._globalConfig = this._getGlobalStorage();
@@ -192,36 +169,10 @@ util.inherits(Base, events.EventEmitter);
192169

193170
// Mixin the actions modules
194171
_.extend(Base.prototype, require('./actions/actions'));
195-
_.extend(Base.prototype, require('./actions/file'));
196172
_.extend(Base.prototype, require('./actions/install'));
197173
_.extend(Base.prototype, require('./actions/help'));
198174
_.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-
211175
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-
);
225176

226177
/**
227178
* 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) {
498449
}.bind(this));
499450
}.bind(this));
500451

501-
this.on('end', function () {
502-
debug('Running the hooked generators');
503-
this.runHooks();
504-
});
505-
506452
_.invokeMap(this._composedWith, 'run');
507453
return this;
508454
};
509455

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-
605456
/**
606457
* Compose this generator with another one.
607458
* @param {String} namespace The generator namespace to compose with

‎lib/index.js

-57
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55
'use strict';
66
var Environment = require('yeoman-environment');
7-
var deprecate = require('./util/deprecate');
87

98
/**
109
* The generator system is a framework for node to author reusable and
@@ -41,59 +40,3 @@ var yeoman = module.exports = function createEnv() {
4140
// hoist up top level class the generator extend
4241
yeoman.Base = require('./base');
4342
yeoman.NamedBase = require('./named-base');
44-
45-
deprecate.property(
46-
'NamedBase constructor is deprecated. See https://github.com/yeoman/generator/issues/882',
47-
yeoman,
48-
'NamedBase'
49-
);
50-
51-
/**
52-
* Test helpers
53-
* {@link module:test/helpers}
54-
*/
55-
Object.defineProperty(yeoman, 'test', {
56-
get: function () {
57-
deprecate.log('yeoman.test is deprecated. Instead `require(\'yeoman-test\')`.');
58-
return require('yeoman-test');
59-
}
60-
});
61-
62-
/**
63-
* Test assertions helpers
64-
* {@link https://github.com/yeoman/yeoman-assert}
65-
*/
66-
yeoman.assert = require('yeoman-assert');
67-
deprecate.property(
68-
'yeoman.assert is deprecated. Instead `require(\'yeoman-assert\')`. See https://github.com/yeoman/generator/issues/883',
69-
yeoman,
70-
'assert'
71-
);
72-
73-
/**
74-
* Yeoman base's generators
75-
* @enum generators
76-
*/
77-
yeoman.generators = {
78-
/**
79-
* Base Generator
80-
* {@link Base}
81-
*/
82-
Base: yeoman.Base,
83-
84-
/**
85-
* Named Base Generator
86-
* {@link NamedBase}
87-
*/
88-
NamedBase: require('./named-base')
89-
};
90-
deprecate.property(
91-
'require(\'yeoman-generator\').generators.Base is deprecated. Use require(\'yeoman-generator\').Base directly',
92-
yeoman.generators,
93-
'Base'
94-
);
95-
deprecate.property(
96-
'NamedBase constructor is deprecated. See https://github.com/yeoman/generator/issues/882',
97-
yeoman.generators,
98-
'NamedBase'
99-
);

‎lib/util/storage.js

+1-11
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ var _ = require('lodash');
1313
* @param {String} configPath The filepath used as a storage.
1414
*
1515
* @example
16-
* var MyGenerator = yeoman.generators.base.extend({
16+
* var MyGenerator = yeoman.base.extend({
1717
* config: function() {
1818
* this.config.set('coffeescript', false);
1919
* }
@@ -58,16 +58,6 @@ Storage.prototype.save = function () {
5858
this._persist(this._store());
5959
};
6060

61-
/**
62-
* Alias to save.
63-
* @deprecated don't use save yourself.
64-
* @return {null}
65-
*/
66-
67-
Storage.prototype.forceSave = function () {
68-
this.save();
69-
};
70-
7161
/**
7262
* Get a stored value
7363
* @param {String} key The key under which the value is stored.

‎package.json

+4-7
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@
4646
"github-username": "^2.0.0",
4747
"glob": "^7.0.3",
4848
"gruntfile-editor": "^1.0.0",
49-
"html-wiring": "^1.0.0",
5049
"istextorbinary": "^2.1.0",
5150
"lodash": "^4.11.1",
5251
"mem-fs-editor": "^2.0.0",
@@ -62,12 +61,8 @@
6261
"shelljs": "^0.7.0",
6362
"text-table": "^0.2.0",
6463
"through2": "^2.0.0",
65-
"underscore.string": "^3.0.3",
6664
"user-home": "^2.0.0",
67-
"yeoman-assert": "^2.0.0",
68-
"yeoman-environment": "^1.1.0",
69-
"yeoman-test": "^1.0.0",
70-
"yeoman-welcome": "^1.0.0"
65+
"yeoman-environment": "^1.1.0"
7166
},
7267
"devDependencies": {
7368
"gulp": "^3.6.0",
@@ -85,6 +80,8 @@
8580
"pinkie-promise": "^2.0.0",
8681
"proxyquire": "^1.0.0",
8782
"sinon": "^1.9.1",
88-
"tui-jsdoc-template": "^1.0.4"
83+
"tui-jsdoc-template": "^1.0.4",
84+
"yeoman-assert": "^2.0.0",
85+
"yeoman-test": "^1.0.0"
8986
}
9087
}

‎test/actions.js

-17
Original file line numberDiff line numberDiff line change
@@ -294,21 +294,4 @@ describe('generators.Base (actions/actions)', function () {
294294
this.dummy.conflicter.resolve(done);
295295
});
296296
});
297-
298-
describe('#expandFiles()', function () {
299-
before(function (done) {
300-
this.dummy.copy('foo.js', 'write/abc/abc.js');
301-
this.dummy._writeFiles(done);
302-
});
303-
304-
it('returns expand files', function () {
305-
var files = this.dummy.expandFiles('write/abc/**');
306-
assert.deepEqual(files, ['write/abc/abc.js']);
307-
});
308-
309-
it('returns expand files', function () {
310-
var files = this.dummy.expandFiles('abc/**', { cwd: './write' });
311-
assert.deepEqual(files, ['abc/abc.js']);
312-
});
313-
});
314297
});

‎test/base.js

+1-68
Original file line numberDiff line numberDiff line change
@@ -39,20 +39,6 @@ describe('generators.Base', function () {
3939
exec: sinon.spy()
4040
});
4141

42-
this.env.registerStub(this.Dummy, 'ember:all');
43-
this.env.registerStub(this.Dummy, 'hook1:ember');
44-
this.env.registerStub(this.Dummy, 'hook2:ember:all');
45-
this.env.registerStub(this.Dummy, 'hook3');
46-
47-
this.env.registerStub(generators.Base.extend({
48-
writing: function () {
49-
this.fs.write(
50-
path.join(tmpdir, 'app/scripts/models/application-model.js'),
51-
'// ...'
52-
);
53-
}
54-
}), 'hook4');
55-
5642
this.dummy = new this.Dummy(['bar', 'baz', 'bom'], {
5743
foo: false,
5844
something: 'else',
@@ -62,12 +48,6 @@ describe('generators.Base', function () {
6248
env: this.env,
6349
'skip-install': true
6450
});
65-
66-
this.dummy
67-
.hookFor('hook1', { as: 'ember' })
68-
.hookFor('hook2', { as: 'ember:all' })
69-
.hookFor('hook3')
70-
.hookFor('hook4');
7151
});
7252

7353
describe('constructor', function () {
@@ -708,49 +688,6 @@ describe('generators.Base', function () {
708688
});
709689
});
710690

711-
describe('#runHooks()', function () {
712-
it('go through all registered hooks, and invoke them in series', function (done) {
713-
this.dummy.runHooks(function () {
714-
fs.stat('app/scripts/models/application-model.js', done);
715-
});
716-
});
717-
});
718-
719-
describe('#hookFor()', function () {
720-
it('emit errors if called when running', function () {
721-
try {
722-
this.dummy.hookFor('maoow');
723-
} catch (err) {
724-
assert.equal(err.message, 'hookFor must be used within the constructor only');
725-
}
726-
});
727-
728-
it('create the matching option', function () {
729-
this.dummy._running = false;
730-
this.dummy.hookFor('something');
731-
732-
assert.deepEqual(this.dummy._options.something, {
733-
desc: 'Something to be invoked',
734-
name: 'something',
735-
type: Boolean,
736-
default: 'else',
737-
hide: false
738-
});
739-
});
740-
741-
it('update the internal hooks holder', function () {
742-
this.dummy.hookFor('something');
743-
assert.deepEqual(this.dummy._hooks.pop(), { name: 'something' });
744-
});
745-
});
746-
747-
describe('#defaultFor()', function () {
748-
it('return the value for the option name, doing lookup in options and Grunt config', function () {
749-
var name = this.dummy.defaultFor('something');
750-
assert.equal(name, 'else');
751-
});
752-
});
753-
754691
describe('#composeWith()', function () {
755692
beforeEach(function () {
756693
this.dummy = new this.Dummy([], {
@@ -875,10 +812,6 @@ describe('generators.Base', function () {
875812
'-h, --help # Print the generator\'s options and usage',
876813
'--skip-cache # Do not remember prompt answers Default: false',
877814
'--skip-install # Do not automatically install dependencies Default: false',
878-
'--hook1 # Hook1 to be invoked',
879-
'--hook2 # Hook2 to be invoked',
880-
'--hook3 # Hook3 to be invoked',
881-
'--hook4 # Hook4 to be invoked',
882815
'--ooOoo # Description for ooOoo',
883816
'',
884817
'Arguments:',
@@ -1097,7 +1030,7 @@ describe('generators.Base', function () {
10971030
// Run event, emitted right before running the generator.
10981031
.on('run', assertEvent('run'))
10991032
// End event, emitted after the generation process, when every generator
1100-
// methods are executed (hooks are executed after)
1033+
// methods are executed
11011034
.on('end', assertEvent('end'))
11021035
.on('method:createSomething', assertEvent('method:createSomething'))
11031036
.on('method:createSomethingElse', assertEvent('method:createSomethingElse'));

‎test/fixtures/lodash-copy.js

-4,330
This file was deleted.
+4-14
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,8 @@
1-
1+
'use strict';
22
// in real use case, users need to require `yeoman-generators`
33
// var generators = require('yeoman-generators');
44
var generators = require('../../../');
5-
var util = require('util');
6-
7-
var Generator = module.exports = function Generator(args, options) {
8-
generators.NamedBase.apply(this, arguments);
9-
// arguments === this.arguments
10-
// options === this.options
11-
};
12-
13-
// namespace
14-
Generator.namespace = 'mocha:generator-base';
15-
16-
util.inherits(Generator, generators.NamedBase);
175

18-
Generator.prototype.doStuff = function() {};
6+
module.exports = generators.NamedBase.extend({
7+
doStuff: function () {}
8+
});

‎test/fixtures/options-generator/main.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99

1010
var yeoman = require('../../../');
1111

12-
module.exports = yeoman.generators.Base.extend({
12+
module.exports = yeoman.Base.extend({
1313
constructor: function () {
14-
yeoman.generators.Base.apply(this, arguments);
14+
yeoman.Base.apply(this, arguments);
1515

1616
// this.log('as passed in: ', this.options.testOption);
1717
this.option('testOption', {

‎test/invoke.js

-81
This file was deleted.

‎test/wiring.js

-21
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.