Skip to content

Commit 3601531

Browse files
committedNov 26, 2016
Get rid of yeoman-environment proxying
1 parent 006577a commit 3601531

File tree

2 files changed

+2
-56
lines changed

2 files changed

+2
-56
lines changed
 

‎lib/index.js

+1-34
Original file line numberDiff line numberDiff line change
@@ -3,39 +3,6 @@
33
*/
44

55
'use strict';
6-
var Environment = require('yeoman-environment');
7-
8-
/**
9-
* The generator system is a framework for node to author reusable and
10-
* composable Generators, for a vast majority of use-case.
11-
*
12-
* Inspired and based off the work done on Thor and Rails 3 Generators, we try
13-
* to provide the same kind of infrastructure.
14-
*
15-
* Generators are registered by namespace, where namespaces are mapping the
16-
* structure of the file system with `:` being simply converted to `/`.
17-
*
18-
* Generators are standard node modules, they are simply required as usual, and
19-
* they can be shipped into reusable npm packages.
20-
*
21-
* The lookup is done depending on the configured load path, which is by
22-
* default `lib/generators` in every generators package installed (ie.
23-
* `node_modules/yeoman-backbone/lib/generators`)
24-
*
25-
* @example
26-
* var yeoman = require('yeoman-generators');
27-
*
28-
* var env = yeoman('angular:model')
29-
* .run(function(err) {
30-
* console.log('done!');
31-
* });
32-
*
33-
* @alias module:yeoman-generator
34-
*/
35-
36-
var yeoman = module.exports = function createEnv() {
37-
return Environment.createEnv.apply(Environment, arguments);
38-
};
396

407
// hoist up top level class the generator extend
41-
yeoman.Base = require('./base');
8+
module.exports.Base = require('./base');

‎test/generators.js

+1-22
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,14 @@
11
/*global describe, before, beforeEach, it */
22
'use strict';
3-
var path = require('path');
4-
var os = require('os');
53
var events = require('events');
64
var Environment = require('yeoman-environment');
75
var generators = require('../');
86
var assert = require('yeoman-assert');
9-
var helpers = require('yeoman-test');
10-
var tmpdir = path.join(os.tmpdir(), 'yeoman-generators');
117

128
describe('Generators module', function () {
13-
before(helpers.setUpTestDirectory(tmpdir));
14-
15-
describe('module', function () {
16-
it('initialize new Environments', function () {
17-
assert.ok(generators() instanceof Environment);
18-
assert.notEqual(generators(), generators());
19-
});
20-
21-
it('pass arguments to the Environment constructor', function () {
22-
var args = ['model', 'Post'];
23-
var opts = { help: true };
24-
var env = generators(args, opts);
25-
assert.deepEqual(env.arguments, args);
26-
assert.deepEqual(env.options, opts);
27-
});
28-
});
29-
309
describe('generators.Base', function () {
3110
beforeEach(function () {
32-
this.env = generators();
11+
this.env = Environment.createEnv();
3312
this.generator = new generators.Base({
3413
env: this.env,
3514
resolved: 'test'

0 commit comments

Comments
 (0)
Please sign in to comment.