Uh oh!
There was an error while loading. Please reload this page.
forked from aaronallport/generator-angular-require
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript-base.js
More file actions
Latest commit
99 lines (84 loc) · 3.16 KB
/
Copy pathscript-base.js
File metadata and controls
99 lines (84 loc) · 3.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
'use strict';
varutil=require('util');
varpath=require('path');
varyeoman=require('yeoman-generator');
varangularUtils=require('./util.js');
varchalk=require('chalk');
varGenerator=module.exports=functionGenerator(){
yeoman.generators.NamedBase.apply(this,arguments);
try{
this.appname=require(path.join(process.cwd(),'bower.json')).name;
}catch(e){
this.appname=path.basename(process.cwd());
}
this.appname=this._.slugify(this._.humanize(this.appname));
this.scriptAppName=this._.camelize(this.appname)+angularUtils.appName(this);
this.cameledName=this._.camelize(this.name);
this.classedName=this._.classify(this.name);
if(typeofthis.env.options.appPath==='undefined'){
this.env.options.appPath=this.options.appPath;
if(!this.env.options.appPath){
try{
this.env.options.appPath=require(path.join(process.cwd(),'bower.json')).appPath;
}catch(e){}
}
this.env.options.appPath=this.env.options.appPath||'app';
this.options.appPath=this.env.options.appPath;
}
if(typeofthis.env.options.testPath==='undefined'){
try{
this.env.options.testPath=require(path.join(process.cwd(),'bower.json')).testPath;
}catch(e){}
this.env.options.testPath=this.env.options.testPath||'test/spec';
}
varsourceRoot='/templates/javascript';
this.scriptSuffix='.js';
this.sourceRoot(path.join(__dirname,sourceRoot));
};
util.inherits(Generator,yeoman.generators.NamedBase);
Generator.prototype.appTemplate=function(src,dest){
yeoman.generators.Base.prototype.template.apply(this,[
src+this.scriptSuffix,
path.join(this.env.options.appPath,dest.toLowerCase())+this.scriptSuffix
]);
};
Generator.prototype.testTemplate=function(src,dest){
yeoman.generators.Base.prototype.template.apply(this,[
src+this.scriptSuffix,
path.join(this.env.options.testPath,dest.toLowerCase())+'Spec'+this.scriptSuffix
]);
};
Generator.prototype.htmlTemplate=function(src,dest){
yeoman.generators.Base.prototype.template.apply(this,[
src,
path.join(this.env.options.appPath,dest.toLowerCase())
]);
};
Generator.prototype.addScriptToIndex=function(script){
try{
varappPath=this.env.options.appPath;
varfullPath=path.join(appPath,'index.html');
angularUtils.rewriteFile({
file: fullPath,
needle: '<!-- endbuild -->',
splicable: [
'<script src="scripts/'+script.replace(/\\/g,'/')+'.js"></script>'
]
});
}catch(e){
this.log.error(chalk.yellow(
'\nUnable to find '+fullPath+'. Reference to '+script+'.js '+'not added.\n'
));
}
};
Generator.prototype.generateSourceAndTest=function(appTemplate,testTemplate,targetDirectory,skipAdd){
// Services use classified names
if(this.generatorName.toLowerCase()==='service'){
this.cameledName=this.classedName;
}
this.appTemplate(appTemplate,path.join('scripts',targetDirectory,this.name));
this.testTemplate(testTemplate,path.join(targetDirectory,this.name));
if(!skipAdd){
this.addScriptToIndex(path.join(targetDirectory,this.name));
}
};