Skip to content

Commit 0df956a

Browse files
authored
Add html and htm to the list of allowed extensions (#2)
1 parent 1e6fa02 commit 0df956a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
const fs = require('fs');
22
const path = require('path')
33
const { randomUUID } = require('crypto');
4-
const allowedExtensions = ['.json', '.yml', '.yaml', '.csv', '.xml', '.properties', '.txt'];
4+
const allowedExtensions = ['.json', '.yml', '.yaml', '.csv', '.xml', '.properties', '.txt', '.html', '.htm'];
55
let clients = [];
66
if (process.env.CLIENTS) {
77
clients = process.env.CLIENTS.split(',');

0 commit comments

Comments
 (0)