mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-20 14:56:19 -04:00
Converted the majority of the core and operations to use CommonJS module syntax.
This commit is contained in:
parent
a4197684e5
commit
a21e0e546b
50 changed files with 308 additions and 123 deletions
11
webpack.config.js
Normal file
11
webpack.config.js
Normal file
|
@ -0,0 +1,11 @@
|
|||
/* eslint-env node */
|
||||
|
||||
var path = require("path");
|
||||
|
||||
module.exports = {
|
||||
entry: "./src/js/views/html/index.js",
|
||||
output: {
|
||||
filename: "bundle.js",
|
||||
path: path.resolve(__dirname, "build/dev")
|
||||
}
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue