dependabot-preview[bot]
a13a720eb4
Bump esbuild from 0.11.19 to 0.11.20
...
Bumps [esbuild](https://github.com/evanw/esbuild ) from 0.11.19 to 0.11.20.
- [Release notes](https://github.com/evanw/esbuild/releases )
- [Changelog](https://github.com/evanw/esbuild/blob/master/CHANGELOG.md )
- [Commits](https://github.com/evanw/esbuild/compare/v0.11.19...v0.11.20 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2021-05-08 01:01:57 +00:00
Oliver Blanthorn
edaee72ad6
Merge pull request #3659 from Rummskartoffel/eval-warning
...
Appease esbuild warnings about direct eval() by using window.eval()
2021-05-07 21:13:01 +01:00
Rummskartoffel
0e46eeca42
Appease esbuild warnings about direct eval() by using window.eval()
...
See also https://esbuild.github.io/content-types/#direct-eval .
Bare ("direct") eval() evaluates in the local scope where it is called
instead of the global scope, which can cause problems (which is why
esbuild complains). Our uses of it don't need local scope, so we can
safely switch to window.eval().
2021-05-07 21:03:11 +02:00
dependabot-preview[bot]
f2dc303c87
Merge pull request #3657 from tridactyl/dependabot/npm_and_yarn/hosted-git-info-2.8.9
2021-05-07 18:11:03 +00:00
dependabot-preview[bot]
33ed501717
[Security] Bump hosted-git-info from 2.8.8 to 2.8.9
...
Bumps [hosted-git-info](https://github.com/npm/hosted-git-info ) from 2.8.8 to 2.8.9. **This update includes a security fix.**
- [Release notes](https://github.com/npm/hosted-git-info/releases )
- [Changelog](https://github.com/npm/hosted-git-info/blob/v2.8.9/CHANGELOG.md )
- [Commits](https://github.com/npm/hosted-git-info/compare/v2.8.8...v2.8.9 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2021-05-07 17:51:43 +00:00
Oliver Blanthorn
a58fa7830b
Merge pull request #3589 from tridactyl/no_reuse_option_container
...
Avoid updating DOM in-place
2021-05-07 15:42:20 +01:00
Oliver Blanthorn
fd038c491b
Update src/completions.ts
...
Co-authored-by: Rummskartoffel <20257197+Rummskartoffel@users.noreply.github.com>
2021-05-07 15:14:57 +01:00
Oliver Blanthorn
12a07248d2
Fix #1743 : hide new tab page better
2021-05-06 18:57:36 +02:00
Oliver Blanthorn
cb67f9955e
Merge pull request #3654 from tridactyl/dependabot/npm_and_yarn/handlebars-4.7.7
...
[Security] Bump handlebars from 4.7.6 to 4.7.7
2021-05-06 17:28:58 +01:00
dependabot-preview[bot]
ad1406bcf9
[Security] Bump handlebars from 4.7.6 to 4.7.7
...
Bumps [handlebars](https://github.com/wycats/handlebars.js ) from 4.7.6 to 4.7.7. **This update includes a security fix.**
- [Release notes](https://github.com/wycats/handlebars.js/releases )
- [Changelog](https://github.com/handlebars-lang/handlebars.js/blob/master/release-notes.md )
- [Commits](https://github.com/wycats/handlebars.js/compare/v4.7.6...v4.7.7 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2021-05-06 16:22:07 +00:00
Oliver Blanthorn
6a466c2e46
Try to fix #3653
2021-05-06 12:29:51 +02:00
Oliver Blanthorn
2a2b28e12a
Merge pull request #3651 from tridactyl/dependabot/npm_and_yarn/esbuild-0.11.19
...
Bump esbuild from 0.11.18 to 0.11.19
2021-05-06 08:44:06 +01:00
dependabot-preview[bot]
ab132ba729
Bump esbuild from 0.11.18 to 0.11.19
...
Bumps [esbuild](https://github.com/evanw/esbuild ) from 0.11.18 to 0.11.19.
- [Release notes](https://github.com/evanw/esbuild/releases )
- [Changelog](https://github.com/evanw/esbuild/blob/master/CHANGELOG.md )
- [Commits](https://github.com/evanw/esbuild/compare/v0.11.18...v0.11.19 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2021-05-06 04:39:41 +00:00
Oliver Blanthorn
b1bfb333b0
Merge pull request #3645 from tridactyl/no_webpack
...
Webpack removal
2021-05-05 17:32:29 +01:00
Oliver Blanthorn
427557f52a
Don't distribute Tridactyl logo source
2021-05-05 18:14:17 +02:00
Oliver Blanthorn
f3b05fc30a
Merge branch 'master' into no_webpack
2021-05-05 17:47:36 +02:00
Oliver Blanthorn
44c0cb32f3
Merge changes from master
2021-05-05 17:45:34 +02:00
Oliver Blanthorn
02a9d42379
Tidy up package.json
...
Remove unused packages, try to install
more sanity in dev / prod dependencies
2021-05-05 17:41:47 +02:00
Oliver Blanthorn
7d5e35dbc5
Remove explicit @types/node dep
2021-05-05 17:28:50 +02:00
Oliver Blanthorn
f9a9ef0336
Simplify updatecheck
...
Remove cache and instead check the latest Tridactyl
version less frequently
2021-05-05 17:28:21 +02:00
Oliver Blanthorn
8b61df953e
Remove rss-parser dependency
2021-05-05 17:15:42 +02:00
Oliver Blanthorn
c111833b04
Remove webpack
2021-05-05 13:04:14 +02:00
Oliver Blanthorn
d54b9bcc24
Add node types to silence rss-parser error
...
This is probably a terrible idea. It'll make us pretend that
lots of `node` functions exist when they don't, which could
result in lots of bugs sneaking past the type checker
2021-05-05 12:37:32 +02:00
dependabot-preview[bot]
2d613bb414
Merge pull request #3647 from tridactyl/dependabot/npm_and_yarn/eslint-plugin-jsdoc-33.1.0
2021-05-05 10:35:07 +00:00
dependabot-preview[bot]
9920a01484
Bump eslint-plugin-jsdoc from 33.0.0 to 33.1.0
...
Bumps [eslint-plugin-jsdoc](https://github.com/gajus/eslint-plugin-jsdoc ) from 33.0.0 to 33.1.0.
- [Release notes](https://github.com/gajus/eslint-plugin-jsdoc/releases )
- [Commits](https://github.com/gajus/eslint-plugin-jsdoc/compare/v33.0.0...v33.1.0 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2021-05-05 10:00:26 +00:00
dependabot-preview[bot]
3e940b0e90
Merge pull request #3646 from tridactyl/dependabot/npm_and_yarn/types/node-15.0.2
2021-05-04 23:31:19 +00:00
dependabot-preview[bot]
14369a8197
Bump @types/node from 15.0.1 to 15.0.2
...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 15.0.1 to 15.0.2.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2021-05-04 23:13:43 +00:00
Oliver Blanthorn
8b3a3f4478
Merge pull request #3594 from tridactyl/dependabot/npm_and_yarn/web-ext-6.1.0
...
Bump web-ext from 6.0.0 to 6.1.0
2021-05-04 21:06:15 +01:00
Oliver Blanthorn
f1bb7dba9d
Merge branch 'master' into dependabot/npm_and_yarn/web-ext-6.1.0
2021-05-04 13:19:18 +01:00
Oliver Blanthorn
fdd65ec76e
Sketch webpack removal
2021-05-04 14:10:30 +02:00
Oliver Blanthorn
3e25b282d2
Add buffer - new webext req
2021-05-04 14:07:43 +02:00
dependabot-preview[bot]
1a088abeef
Merge pull request #3643 from tridactyl/dependabot/npm_and_yarn/typescript-eslint/parser-4.22.1
2021-05-04 11:08:15 +00:00
dependabot-preview[bot]
e35f2421e2
Bump @typescript-eslint/parser from 4.22.0 to 4.22.1
...
Bumps [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser ) from 4.22.0 to 4.22.1.
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/parser/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v4.22.1/packages/parser )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2021-05-04 10:52:12 +00:00
dependabot-preview[bot]
b0e3312cbe
Merge pull request #3644 from tridactyl/dependabot/npm_and_yarn/typescript-eslint/eslint-plugin-4.22.1
2021-05-04 10:50:19 +00:00
dependabot-preview[bot]
a9e7e0010a
Bump @typescript-eslint/eslint-plugin from 4.22.0 to 4.22.1
...
Bumps [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin ) from 4.22.0 to 4.22.1.
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v4.22.1/packages/eslint-plugin )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2021-05-04 10:28:46 +00:00
dependabot-preview[bot]
18e11c201b
Merge pull request #3642 from tridactyl/dependabot/npm_and_yarn/typescript-eslint/eslint-plugin-tslint-4.22.1
2021-05-04 10:26:41 +00:00
dependabot-preview[bot]
54df422c14
Bump @typescript-eslint/eslint-plugin-tslint from 4.22.0 to 4.22.1
...
Bumps [@typescript-eslint/eslint-plugin-tslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin-tslint ) from 4.22.0 to 4.22.1.
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases )
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin-tslint/CHANGELOG.md )
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v4.22.1/packages/eslint-plugin-tslint )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2021-05-04 10:11:11 +00:00
dependabot-preview[bot]
74ddb359ae
Bump web-ext from 6.0.0 to 6.1.0
...
Bumps [web-ext](https://github.com/mozilla/web-ext ) from 6.0.0 to 6.1.0.
- [Release notes](https://github.com/mozilla/web-ext/releases )
- [Commits](https://github.com/mozilla/web-ext/compare/6.0.0...6.1.0 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2021-05-03 19:09:28 +00:00
Oliver Blanthorn
6d5403c7d0
Merge pull request #3603 from tridactyl/dependabot/npm_and_yarn/eslint-plugin-sonarjs-0.7.0
...
Bump eslint-plugin-sonarjs from 0.5.0 to 0.7.0
2021-05-03 20:08:31 +01:00
Oliver Blanthorn
3e714befd8
Merge pull request #3521 from tridactyl/dependabot/npm_and_yarn/typedoc-default-themes-0.12.10
...
Bump typedoc-default-themes from 0.12.5 to 0.12.10
2021-05-03 20:08:03 +01:00
Oliver Blanthorn
723421bb4a
Merge pull request #3609 from tridactyl/dependabot/npm_and_yarn/ts-loader-9.1.1
...
Bump ts-loader from 8.2.0 to 9.1.1
2021-05-03 20:07:36 +01:00
Oliver Blanthorn
0f991458bc
Merge pull request #3630 from tridactyl/dependabot/npm_and_yarn/eslint-plugin-jsdoc-33.0.0
...
Bump eslint-plugin-jsdoc from 32.3.4 to 33.0.0
2021-05-03 20:07:07 +01:00
Oliver Blanthorn
824457cc17
Merge pull request #3576 from tridactyl/dependabot/npm_and_yarn/selenium-webdriver-4.0.0-beta.3
...
Bump selenium-webdriver from 4.0.0-beta.1 to 4.0.0-beta.3
2021-05-03 20:06:42 +01:00
Oliver Blanthorn
1016676f85
Merge pull request #3621 from tridactyl/dependabot/npm_and_yarn/types/node-15.0.1
...
Bump @types/node from 14.14.41 to 15.0.1
2021-05-03 20:06:32 +01:00
Oliver Blanthorn
c264ab3aa3
Merge pull request #3640 from tridactyl/dependabot/npm_and_yarn/esbuild-0.11.18
...
Bump esbuild from 0.11.7 to 0.11.18
2021-05-03 20:06:18 +01:00
Oliver Blanthorn
bd64daf675
Remove misinformation about double escaping dots
2021-05-03 11:33:50 +02:00
dependabot-preview[bot]
1621d87017
Merge pull request #3641 from tridactyl/dependabot/npm_and_yarn/webpack-5.36.2
2021-05-03 06:27:06 +00:00
dependabot-preview[bot]
f5eb044b76
Bump webpack from 5.36.1 to 5.36.2
...
Bumps [webpack](https://github.com/webpack/webpack ) from 5.36.1 to 5.36.2.
- [Release notes](https://github.com/webpack/webpack/releases )
- [Commits](https://github.com/webpack/webpack/compare/v5.36.1...v5.36.2 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2021-05-03 05:53:23 +00:00
dependabot-preview[bot]
d9f9df2600
Bump esbuild from 0.11.7 to 0.11.18
...
Bumps [esbuild](https://github.com/evanw/esbuild ) from 0.11.7 to 0.11.18.
- [Release notes](https://github.com/evanw/esbuild/releases )
- [Changelog](https://github.com/evanw/esbuild/blob/master/CHANGELOG.md )
- [Commits](https://github.com/evanw/esbuild/compare/v0.11.7...v0.11.18 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2021-05-02 23:31:49 +00:00
dependabot-preview[bot]
ffacd6ef2f
Bump @types/node from 14.14.41 to 15.0.1
...
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node ) from 14.14.41 to 15.0.1.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases )
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2021-05-02 12:29:07 +00:00