https://github.com/nicoelayda/finicky-config-webpack
A webpack template for transpiling ES6 modules into configuration files for Finicky
https://github.com/nicoelayda/finicky-config-webpack
finicky javascript nodejs webpack
Last synced: 3 months ago
JSON representation
A webpack template for transpiling ES6 modules into configuration files for Finicky
- Host: GitHub
- URL: https://github.com/nicoelayda/finicky-config-webpack
- Owner: nicoelayda
- License: mit
- Created: 2022-04-23T17:20:41.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-04-23T17:53:14.000Z (about 3 years ago)
- Last Synced: 2025-01-14T23:59:06.512Z (5 months ago)
- Topics: finicky, javascript, nodejs, webpack
- Language: JavaScript
- Homepage:
- Size: 28.3 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# finicky-config-webpack
A [webpack](https://webpack.js.org) template for transpiling ES6 modules into configuration files for [Finicky](https://github.com/johnste/finicky).## Requirements
- [Node.js](https://nodejs.org) 17.9.0
- [Finicky](https://github.com/johnste/finicky) 3.4.0 or later## Quick Start
1. Edit files in `src` directory.
This template contains 3 files:
- **`common.js`** - shared code
- **`personal.js`** - finicky config file for personal browsing
- **`work.js`** - finicky config for workModify them to suit your use case.
2. Open a Terminal window and run
```sh
npm install
npm run build
```Generated configuration files will be saved in `$HOME/.config/finicky`
If you want to add more configuration profiles, change the output directory, or make any changes to the build output, have a look at the [webpack documentation](https://webpack.js.org/concepts/) and [`webpack.config.js`](webpack.config.js) file.
## License
MIT. See [LICENSE](LICENSE).