Remove source-map-register support

The imported source-map-register.js file was triggering a CodeQL warning
for CWE-20. For now we simply remove this support to avoid this warning.
This commit is contained in:
Daz DeBoer 2022-09-21 11:40:47 -06:00
parent 8a17724c3e
commit 7a0cbada5c
No known key found for this signature in database
GPG key ID: DD6B9F0B06683D5D
5 changed files with 3 additions and 5 deletions

2
dist/main/index.js vendored
View file

@ -1,4 +1,4 @@
require('./sourcemap-register.js');/******/ (() => { // webpackBootstrap
/******/ (() => { // webpackBootstrap
/******/ var __webpack_modules__ = ({
/***/ 7799:

File diff suppressed because one or more lines are too long

2
dist/post/index.js vendored
View file

@ -1,4 +1,4 @@
require('./sourcemap-register.js');/******/ (() => { // webpackBootstrap
/******/ (() => { // webpackBootstrap
/******/ var __webpack_modules__ = ({
/***/ 7799:

File diff suppressed because one or more lines are too long

View file

@ -8,7 +8,7 @@
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"compile": "ncc build src/main.ts --out dist/main --source-map && ncc build src/post.ts --out dist/post --source-map",
"compile": "ncc build src/main.ts --out dist/main --source-map --no-source-map-register && ncc build src/post.ts --out dist/post --source-map --no-source-map-register",
"test": "jest",
"check": "npm run format && npm run lint",
"build": "npm run check && npm run compile",