Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/omridevk/node-cleaner
App to clean up disk space by removing unused node_modules directories
https://github.com/omridevk/node-cleaner
Last synced: 4 days ago
JSON representation
App to clean up disk space by removing unused node_modules directories
- Host: GitHub
- URL: https://github.com/omridevk/node-cleaner
- Owner: omridevk
- License: mit
- Created: 2020-04-08T00:24:49.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-12-15T23:36:13.000Z (almost 2 years ago)
- Last Synced: 2024-10-22T21:25:33.777Z (13 days ago)
- Language: TypeScript
- Homepage:
- Size: 10.5 MB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 131
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
[![Build Status](https://travis-ci.org/omridevk/node-cleaner.svg?branch=master)](https://travis-ci.org/omridevk/node-cleaner)
## Starting Development
Start the app in the `dev` environment. This starts the renderer process in [**hot-module-replacement**](https://webpack.js.org/guides/hmr-react/) mode and starts a webpack dev server that sends hot updates to the renderer process:
```bash
yarn dev
```#### Demo mode
start the app in the development mode but all deletetion of directories will be mocked (i.e node_modules directory will not be deleted).
Good for testing functionality without actually deleting files from the file system.```bash
yarn dev-demo
```## Packaging for Production
To package apps for the local platform:
```bash
yarn package
```## Publishing
1. Development should happen on sidebranch
2. Increase version in both package.json app/package.json
3. When feature is ready merge to master
4. This will trigger Travis CI
5. Travis will publish to S3 and create GitHub draft## Docs
See our [docs and guides here](https://electron-react-boilerplate.js.org/docs/installation)