-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
index.ts
95 lines (89 loc) · 3.19 KB
/
index.ts
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
#!/usr/bin/env node
import minimist from 'minimist';
import { version } from './package.json';
import { createSitemap } from './src/index';
import { ChangeFreq, Options } from './src/interfaces/global.interface';
const REPO_URL = 'https://github.com/bartholomej/svelte-sitemap';
let stop = false;
const args = minimist(process.argv.slice(2), {
string: ['domain', 'out-dir', 'ignore', 'change-freq'],
boolean: ['attribution', 'reset-time', 'trailing-slashes', 'debug', 'version'],
default: { attribution: true, 'trailing-slashes': false, default: false },
alias: {
d: 'domain',
D: 'domain',
h: 'help',
H: 'help',
v: 'version',
V: 'version',
O: 'out-dir',
o: 'out-dir',
r: 'reset-time',
R: 'reset-time',
c: 'change-freq',
C: 'change-freq',
i: 'ignore',
I: 'ignore',
t: 'trailing-slashes',
T: 'trailing-slashes'
},
unknown: (err: string) => {
console.log('⚠ Those arguments are not supported:', err);
console.log('Use: `svelte-sitemap --help` for more options.\n');
stop = true;
return false;
}
});
if (args.help || args.version === '' || args.version === true) {
const log = args.help ? console.log : console.error;
log('Svelte `sitemap.xml` generator');
log('');
log(`svelte-sitemap ${version} (check updates: ${REPO_URL})`);
log('');
log('Options:');
log('');
log(' -d, --domain Use your domain (eg. https://example.com)');
log(' -o, --out-dir Custom output dir');
log(' -i, --ignore Exclude some pages or folders');
log(' -t, --trailing-slashes Do you like trailing slashes?');
log(' -r, --reset-time Set modified time to now');
log(' -c, --change-freq Set change frequency `weekly` | `daily` | …');
log(' -v, --version Show version');
log(' --debug Debug mode');
log(' ');
process.exit(args.help ? 0 : 1);
} else if (!args.domain) {
console.log(
`⚠ svelte-sitemap: --domain argument is required.\n\nSee instructions: ${REPO_URL}\n\nExample:\n\n svelte-sitemap --domain https://mydomain.com\n`
);
process.exit(0);
} else if (!args.domain.includes('http')) {
console.log(
`⚠ svelte-sitemap: --domain argument must starts with https://\n\nSee instructions: ${REPO_URL}\n\nExample:\n\n svelte-sitemap --domain https://mydomain.com\n`
);
process.exit(0);
} else if (stop) {
// Do nothing if there is something suspicious
} else {
const domain: string = args.domain ? args.domain : undefined;
const debug: boolean = args.debug === '' || args.debug === true ? true : false;
const resetTime: boolean =
args['reset-time'] === '' || args['reset-time'] === true ? true : false;
const trailingSlashes: boolean =
args['trailing-slashes'] === '' || args['trailing-slashes'] === true ? true : false;
const changeFreq: ChangeFreq = args['change-freq'];
const outDir: string = args['out-dir'];
const ignore: string = args['ignore'];
const attribution: boolean =
args['attribution'] === '' || args['attribution'] === false ? false : true;
const options: Options = {
debug,
resetTime,
changeFreq,
outDir,
attribution,
ignore,
trailingSlashes
};
createSitemap(domain, options);
}