summaryrefslogtreecommitdiff
path: root/src/common/build/license.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/build/license.ts')
-rw-r--r--src/common/build/license.ts13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/common/build/license.ts b/src/common/build/license.ts
deleted file mode 100644
index e5c264df8a..0000000000
--- a/src/common/build/license.ts
+++ /dev/null
@@ -1,13 +0,0 @@
-import * as fs from 'fs';
-
-const license = fs.readFileSync(__dirname + '/../../../LICENSE', 'utf-8');
-
-const licenseHtml = license
- .replace(/\r\n/g, '\n')
- .replace(/(.)\n(.)/g, '$1 $2')
- .replace(/(^|\n)(.*?)($|\n)/g, '<p>$2</p>');
-
-export {
- license,
- licenseHtml
-};