Maël Obréjan

Results 7 issues of Maël Obréjan

A dry-run option would be nice (e.g: `./install --dry-run`). It would allow testing new configs without wrecking your home.

While working on #523 I noticed: - some files are not correctly formatted (i.e: running `cargo fmt --check` fails), - a `.rustfmt.toml` file is present, it was added in #210...

Add a missing helper function.

# Feature request ## Is your feature request related to a problem? Please describe. It is currently impossible to differentiate errors, e.g: when a user signs up there is a...

enhancement

When `index.html` doesn't contain a `head` closing tag SW injection fails silently. However a valid HTML document doesn't require a `head` element to be present ([it can be implicit](https://html.spec.whatwg.org/multipage/semantics.html#the-head-element)). The...

You ship type defs but `package.json` is missing a `types` entry, i.e: ```diff "type": "module", "main": "src/index.js", + "types": "types/index.d.ts", "scripts": { "tsc": "tsc", "eslint": "eslint '**/*.js' --fix" }, ```

Currently all route handlers needs to be `Send`, `Sync` and `'static`, the default hyper `Executor` only requires `Send` and `'static` bounds (see [this line](https://github.com/hyperium/hyper/blob/v0.14.10/src/common/exec.rs#L82)). The `Sync` bound is currently needed...