diff --git a/assets/style.css b/assets/style.css deleted file mode 100644 index e69de29..0000000 diff --git a/client/common-client-plugin.js b/client/common-client-plugin.js deleted file mode 100644 index 50df4e7..0000000 --- a/client/common-client-plugin.js +++ /dev/null @@ -1,7 +0,0 @@ -function register ({ registerHook, peertubeHelpers }) { - -} - -export { - register -} diff --git a/languages/fr.json b/languages/fr.json deleted file mode 100644 index 76a8eb7..0000000 --- a/languages/fr.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "Hello world": "Hello le monde" -} diff --git a/public/images/.gitkeep b/public/images/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/webpack.config.js b/webpack.config.js deleted file mode 100644 index c73f592..0000000 --- a/webpack.config.js +++ /dev/null @@ -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