The to-do app to organize your life. Public API Roadmap here: https://my.vikunja.cloud/share/QFyzYEmEYfSyQfTOmIRSwLUpkFjboaBqQCnaPmWd/auth?view=kanban
Go to file
renovate fccb0dcc61 chore(deps): update dependency esbuild to v0.14.6 (#1218)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [esbuild](https://github.com/evanw/esbuild) | devDependencies | patch | [`0.14.5` -> `0.14.6`](https://renovatebot.com/diffs/npm/esbuild/0.14.5/0.14.6) |

---

### Release Notes

<details>
<summary>evanw/esbuild</summary>

### [`v0.14.6`](https://github.com/evanw/esbuild/blob/master/CHANGELOG.md#&#8203;0146)

[Compare Source](https://github.com/evanw/esbuild/compare/v0.14.5...v0.14.6)

-   Fix a minifier bug with BigInt literals

    Previously expression simplification optimizations in the minifier incorrectly assumed that numeric operators always return numbers. This used to be true but has no longer been true since the introduction of BigInt literals in ES2020. Now numeric operators can return either a number or a BigInt depending on the arguments. This oversight could potentially have resulted in behavior changes. For example, this code printed `false` before being minified and `true` after being minified because esbuild shortened `===` to `==` under the false assumption that both operands were numbers:

    ```js
    var x = 0;
    console.log((x ? 2 : -1n) === -1);
    ```

    The type checking logic has been rewritten to take into account BigInt literals in this release, so this incorrect simplification is no longer applied.

-   Enable removal of certain unused template literals ([#&#8203;1853](https://github.com/evanw/esbuild/issues/1853))

    This release contains improvements to the minification of unused template literals containing primitive values:

    ```js
    // Original code
    `${1}${2}${3}`;
    `${x ? 1 : 2}${y}`;

    // Old output (with --minify)
    ""+1+2+3,""+(x?1:2)+y;

    // New output (with --minify)
    x,`${y}`;
    ```

    This can arise when the template literals are nested inside of another function call that was determined to be unnecessary such as an unused call to a function marked with the `/* @&#8203;__PURE__ */` pragma.

    This release also fixes a bug with this transformation where minifying the unused expression `` `foo ${bar}` `` into `"" + bar` changed the meaning of the expression. Template string interpolation always calls `toString` while string addition may call `valueOf` instead. This unused expression is now minified to `` `${bar}` ``, which is slightly longer but which avoids the behavior change.

-   Allow `keyof`/`readonly`/`infer` in TypeScript index signatures ([#&#8203;1859](https://github.com/evanw/esbuild/pull/1859))

    This release fixes a bug that prevented these keywords from being used as names in index signatures. The following TypeScript code was previously rejected, but is now accepted:

    ```ts
    interface Foo {
      [keyof: string]: number
    }
    ```

    This fix was contributed by [@&#8203;magic-akari](https://github.com/magic-akari).

-   Avoid warning about `import.meta` if it's replaced ([#&#8203;1868](https://github.com/evanw/esbuild/issues/1868))

    It's possible to replace the `import.meta` expression using the `--define:` feature. Previously doing that still warned that the `import.meta` syntax was not supported when targeting ES5. With this release, there will no longer be a warning in this case.

</details>

---

### Configuration

📅 **Schedule**: At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box.

---

This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).

Reviewed-on: vikunja/frontend#1218
Co-authored-by: renovate <renovatebot@kolaente.de>
Co-committed-by: renovate <renovatebot@kolaente.de>
2021-12-20 07:14:24 +00:00
.github Add github sponsoring 2021-01-20 21:48:23 +01:00
.vscode.example feat: add example configuration for vscode with volor (#791) 2021-09-26 14:49:06 +00:00
cypress feat: add message component (#1082) 2021-11-28 14:18:27 +00:00
docs Move everything to models and services (#17) 2019-03-02 10:25:10 +00:00
originalMedia fix: llama color (#1212) 2021-12-19 20:08:59 +00:00
public feat: compress media files (#818) 2021-10-03 18:48:02 +00:00
scripts chore(ci): make sure you cannot tamper the deploy script in a PR 2021-11-14 16:50:07 +01:00
src fix: llama color (#1212) 2021-12-19 20:08:59 +00:00
.drone.yml revert: "feat: always use latest browserlist (#1021)" 2021-12-12 16:26:43 +01:00
.editorconfig feat: add .editorconfig for scss and css files (#970) 2021-11-10 17:15:03 +00:00
.gitignore feat: add preview deploys with netlify (#972) 2021-11-10 21:25:50 +00:00
.nvmrc revert: fix: update node in .nvmrc aswell (#886) 2021-10-25 16:40:47 +02:00
CHANGELOG.md chore: 0.18.2 release preparations 2021-11-23 20:22:07 +01:00
Dockerfile feat: remove ssl generation from docker image 2021-11-13 17:28:56 +01:00
LICENSE Change license to AGPLv3 2020-12-23 16:47:05 +01:00
README.md chore: 0.18.2 release preparations 2021-11-23 20:22:07 +01:00
cypress.json chore: change cypress settings to run tests in cypress without needing to modify the config 2021-10-02 20:07:38 +02:00
docker-manifest-unstable.tmpl Switch the :latest docker image tag to contain the latest release instead of the latest unstable 2021-09-05 13:44:05 +02:00
docker-manifest.tmpl Change building latest docker image 2021-09-05 14:40:14 +02:00
index.html feat: add sentry (#879) 2021-10-26 18:53:17 +00:00
netlify.toml fix: preview deploy for PRs (#990) 2021-11-13 15:36:53 +00:00
nginx.conf feat: remove ssl generation from docker image 2021-11-13 17:28:56 +01:00
package.json chore(deps): update dependency esbuild to v0.14.6 (#1218) 2021-12-20 07:14:24 +00:00
renovate.json Replace renovate tokens with env 2020-09-22 22:05:12 +02:00
run.sh fix: default sentry dsn in docker 2021-12-07 22:05:19 +01:00
tsconfig.json feat: some vue3 package improvements 2021-10-11 18:49:44 +02:00
vite.config.js Migrate to bulma-css-variables and introduce dark mode (#954) 2021-11-22 21:12:54 +00:00
yarn.lock chore(deps): update dependency esbuild to v0.14.6 (#1218) 2021-12-20 07:14:24 +00:00

README.md

Web frontend for Vikunja

The todo app to organize your life.

Build Status License: AGPL v3 Download Translation

This is the web frontend for Vikunja, written in Vue.js.

Take a look at our roadmap (hosted on Vikunja!) for a list of things we're currently working on!

Security Reports

If you find any security-related issues you don't want to disclose publicly, please use the contact information on our website.

Docker

There is a docker image available with support for http/2 and aggressive caching enabled.

Project setup

yarn install

Compiles and hot-reloads for development

yarn run serve

Compiles and minifies for production

yarn run build

Lints and fixes files

yarn run lint