├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .prettierrc ├── README.md ├── package.json ├── src ├── main │ └── index.ts └── renderer │ ├── assets │ └── main.scss │ └── index.tsx ├── tsconfig.json ├── webpack.main.additions.js └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- 1 | dist -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/electron-webpack-obfuscation/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | dist/ 3 | node_modules/ 4 | thumbs.db 5 | .idea/ -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/electron-webpack-obfuscation/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/electron-webpack-obfuscation/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/electron-webpack-obfuscation/HEAD/package.json -------------------------------------------------------------------------------- /src/main/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/electron-webpack-obfuscation/HEAD/src/main/index.ts -------------------------------------------------------------------------------- /src/renderer/assets/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/electron-webpack-obfuscation/HEAD/src/renderer/assets/main.scss -------------------------------------------------------------------------------- /src/renderer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/electron-webpack-obfuscation/HEAD/src/renderer/index.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/electron-webpack-obfuscation/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.main.additions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/electron-webpack-obfuscation/HEAD/webpack.main.additions.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/electron-webpack-obfuscation/HEAD/yarn.lock --------------------------------------------------------------------------------