Skip to content
This repository was archived by the owner on Aug 22, 2020. It is now read-only.

Commit 1bbd5bc

Browse files
committed
style: lint and format
1 parent b09e8f1 commit 1bbd5bc

File tree

6 files changed

+185
-168
lines changed

6 files changed

+185
-168
lines changed

cli.js

+14-12
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,32 @@
11
#!/usr/bin/env node
22

3+
const {existsSync} = require('fs');
4+
const {join} = require('path');
35
const yParser = require('yargs-parser');
46
const semver = require('semver');
5-
const { existsSync } = require('fs');
6-
const { join } = require('path');
77
const chalk = require('chalk');
88
const run = require('./lib/run');
99

10-
// print version and @local
10+
// Print version and @local
1111
const args = yParser(process.argv.slice(2));
1212

1313
if (args.v || args.version) {
14-
console.log(require('./package').version);
15-
if (existsSync(join(__dirname, '.local'))) {
16-
console.log(chalk.cyan('@local'));
17-
}
18-
process.exit(0);
14+
console.log(require('./package').version);
15+
if (existsSync(join(__dirname, '.local'))) {
16+
console.log(chalk.cyan('@local'));
17+
}
18+
process.exit(0);
1919
}
2020

2121
if (!semver.satisfies(process.version, '>= 8.0.0')) {
22-
console.error(chalk.red('✘ The generator will only work with Node v8.0.0 and up!'));
23-
process.exit(1);
22+
console.error(
23+
chalk.red('✘ The generator will only work with Node v8.0.0 and up!')
24+
);
25+
process.exit(1);
2426
}
2527

2628
const name = args._[0] || '';
2729
run({
28-
name,
29-
args,
30+
name,
31+
args
3032
});

lib/BasicGenerator.js

+35-31
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,48 @@
1+
const {statSync} = require('fs');
2+
const {basename} = require('path');
13
const Generator = require('yeoman-generator');
24
const glob = require('glob');
3-
const { statSync } = require('fs');
4-
const { basename } = require('path');
55
const debug = require('debug')('create-vuepress:BasicGenerator');
66

77
function noop() {
8-
return true;
8+
return true;
99
}
1010

1111
class BasicGenerator extends Generator {
12-
constructor(opts) {
13-
super(opts);
14-
this.opts = opts;
15-
this.name = basename(opts.env.cwd);
16-
}
12+
constructor(opts) {
13+
super(opts);
14+
this.opts = opts;
15+
this.name = basename(opts.env.cwd);
16+
}
1717

18-
isTsFile(f) {
19-
return f.endsWith('.ts') || f.endsWith('.tsx') || ['tsconfig.json', 'tslint.yml'].includes(f);
20-
}
18+
isTsFile(f) {
19+
return (
20+
f.endsWith('.ts') ||
21+
f.endsWith('.tsx') ||
22+
['tsconfig.json', 'tslint.yml'].includes(f)
23+
);
24+
}
2125

22-
writeFiles({ context, filterFiles = noop }) {
23-
debug(`context: ${JSON.stringify(context)}`);
24-
glob
25-
.sync('**/*', {
26-
cwd: this.templatePath(),
27-
dot: true,
28-
})
29-
.filter(filterFiles)
30-
.forEach(file => {
31-
debug(`copy ${file}`);
32-
const filePath = this.templatePath(file);
33-
if (statSync(filePath).isFile()) {
34-
this.fs.copyTpl(
35-
this.templatePath(filePath),
36-
this.destinationPath(file.replace(/^_/, '.')),
37-
context,
38-
);
39-
}
40-
});
41-
}
26+
writeFiles({context, filterFiles = noop}) {
27+
debug(`context: ${JSON.stringify(context)}`);
28+
glob
29+
.sync('**/*', {
30+
cwd: this.templatePath(),
31+
dot: true
32+
})
33+
.filter(filterFiles)
34+
.forEach(file => {
35+
debug(`copy ${file}`);
36+
const filePath = this.templatePath(file);
37+
if (statSync(filePath).isFile()) {
38+
this.fs.copyTpl(
39+
this.templatePath(filePath),
40+
this.destinationPath(file.replace(/^_/, '.')),
41+
context
42+
);
43+
}
44+
});
45+
}
4246
}
4347

4448
module.exports = BasicGenerator;

lib/generators/blog/index.js

+36-36
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,43 @@
11
const BasicGenerator = require('../../BasicGenerator');
22

33
class Generator extends BasicGenerator {
4-
prompting() {
5-
const prompts = [
6-
{
7-
name: 'name',
8-
message: `What's the name of your project?`,
9-
default: this.name,
10-
},
11-
{
12-
name: 'description',
13-
message: `What's the description of your project?`,
14-
},
15-
{
16-
name: 'mail',
17-
message: `What's your email?`,
18-
},
19-
{
20-
name: 'author',
21-
message: `What's your name?`,
22-
},
23-
{
24-
name: 'repo',
25-
message: `What's the repo of your project.`,
26-
},
27-
];
28-
return this.prompt(prompts).then(props => {
29-
this.prompts = props;
30-
});
31-
}
4+
prompting() {
5+
const prompts = [
6+
{
7+
name: 'name',
8+
message: `What's the name of your project?`,
9+
default: this.name
10+
},
11+
{
12+
name: 'description',
13+
message: `What's the description of your project?`
14+
},
15+
{
16+
name: 'mail',
17+
message: `What's your email?`
18+
},
19+
{
20+
name: 'author',
21+
message: `What's your name?`
22+
},
23+
{
24+
name: 'repo',
25+
message: `What's the repo of your project.`
26+
}
27+
];
28+
return this.prompt(prompts).then(props => {
29+
this.prompts = props;
30+
});
31+
}
3232

33-
writing() {
34-
this.writeFiles({
35-
context: this.prompts,
36-
filterFiles: f => {
37-
return true;
38-
},
39-
});
40-
}
33+
writing() {
34+
this.writeFiles({
35+
context: this.prompts,
36+
filterFiles: () => {
37+
return true;
38+
}
39+
});
40+
}
4141
}
4242

4343
module.exports = Generator;

lib/generators/docs/index.js

+36-36
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,43 @@
11
const BasicGenerator = require('../../BasicGenerator');
22

33
class Generator extends BasicGenerator {
4-
prompting() {
5-
const prompts = [
6-
{
7-
name: 'name',
8-
message: `What's the name of your project?`,
9-
default: this.name,
10-
},
11-
{
12-
name: 'description',
13-
message: `What's the description of your project?`,
14-
},
15-
{
16-
name: 'mail',
17-
message: `What's your email?`,
18-
},
19-
{
20-
name: 'author',
21-
message: `What's your name?`,
22-
},
23-
{
24-
name: 'repo',
25-
message: `What's the repo of your project.`,
26-
},
27-
];
28-
return this.prompt(prompts).then(props => {
29-
this.prompts = props;
30-
});
31-
}
4+
prompting() {
5+
const prompts = [
6+
{
7+
name: 'name',
8+
message: `What's the name of your project?`,
9+
default: this.name
10+
},
11+
{
12+
name: 'description',
13+
message: `What's the description of your project?`
14+
},
15+
{
16+
name: 'mail',
17+
message: `What's your email?`
18+
},
19+
{
20+
name: 'author',
21+
message: `What's your name?`
22+
},
23+
{
24+
name: 'repo',
25+
message: `What's the repo of your project.`
26+
}
27+
];
28+
return this.prompt(prompts).then(props => {
29+
this.prompts = props;
30+
});
31+
}
3232

33-
writing() {
34-
this.writeFiles({
35-
context: this.prompts,
36-
filterFiles: f => {
37-
return true;
38-
},
39-
});
40-
}
33+
writing() {
34+
this.writeFiles({
35+
context: this.prompts,
36+
filterFiles: () => {
37+
return true;
38+
}
39+
});
40+
}
4141
}
4242

4343
module.exports = Generator;

0 commit comments

Comments
 (0)