Remove unused folders

This commit is contained in:
Amaury 2021-06-26 14:46:03 +02:00
parent bc7eed482f
commit 773f484ae8
5 changed files with 0 additions and 30 deletions

View File

View File

@ -1,7 +0,0 @@
function register ({ registerHook, peertubeHelpers }) {
}
export {
register
}

View File

@ -1,3 +0,0 @@
{
"Hello world": "Hello le monde"
}

View File

View File

@ -1,20 +0,0 @@
const path = require("path")
const EsmWebpackPlugin = require("@purtuga/esm-webpack-plugin")
const clientFiles = [
'common-client-plugin.js'
]
let config = clientFiles.map(f => ({
entry: "./client/" + f,
output: {
path: path.resolve(__dirname, "./dist"),
filename: "./" + f,
library: "script",
libraryTarget: "var"
},
plugins: [ new EsmWebpackPlugin() ]
}))
module.exports = config