OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
API
/
swagger-ui-5.17.14
/
webpack
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/07/2024 04:33:48 AM
rwxr-xr-x
📄
_config-builder.js
4.13 KB
08/07/2024 04:33:45 AM
rw-r--r--
📄
_helpers.js
440 bytes
08/07/2024 04:33:45 AM
rw-r--r--
📄
bundle.js
1.37 KB
08/07/2024 04:33:45 AM
rw-r--r--
📄
core.js
434 bytes
08/07/2024 04:33:45 AM
rw-r--r--
📄
dev-e2e.js
1.61 KB
08/07/2024 04:33:45 AM
rw-r--r--
📄
dev.js
3.02 KB
08/07/2024 04:33:45 AM
rw-r--r--
📄
es-bundle-core.js
2.48 KB
08/07/2024 04:33:45 AM
rw-r--r--
📄
es-bundle.js
1.37 KB
08/07/2024 04:33:45 AM
rw-r--r--
📄
standalone.js
480 bytes
08/07/2024 04:33:45 AM
rw-r--r--
📄
stylesheets.js
1.61 KB
08/07/2024 04:33:45 AM
rw-r--r--
Editing: _helpers.js
Close
/** * @prettier */ const { gitDescribeSync } = require("git-describe") function getRepoInfo() { try { return gitDescribeSync(__dirname) } catch (e) { console.error(e) return { hash: "noGit", dirty: false, } } } function getDevtool(sourcemaps, minimize) { if (!sourcemaps) return false return minimize ? "source-map" : "cheap-module-source-map" } module.exports = { getRepoInfo, getDevtool, }