Skip to content

Commit f467d5a

Browse files
committed
extesion: update runtime dependencies
also regereate lock file from scratch
1 parent 1b045ac commit f467d5a

File tree

7 files changed

+923
-952
lines changed

7 files changed

+923
-952
lines changed

extension/README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ See `PRIVACY.org`.
77
## browserslist
88
Not used by the extension (since `rollup-plugin-typescript` is looking at `tsconfig.json`), but it's used by babel/jest?
99

10+
## dependencies
11+
- **codemirror**: for editing code on options page
12+
- **anchorme**: for linkifying URLs in the sidebar
13+
- **tippy.js**: for tooltips with visited marks on the page
14+
- TODO seems like project is archived, so might need some alternative
15+
- **webext-options-sync**: for syncing extension options across browsers/devices
16+
1017
## devDependencies
1118

1219
- **@babel/core**, **@babel/preset-env**, **@babel/preset-typescript**: only needed for eslint, extension code is handled by typescript
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
// this is a dependency of webext-options-sync, but only used in saveFileOld function which we don't use
2+
// just to make tests run

extension/jest.config.cjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ module.exports = {
7979
moduleNameMapper: {
8080
'.*dom.form.serializer.*': '<rootDir>/__mocks__/dom-form-serializer.js',
8181
'^webextension-polyfill$': '<rootDir>/__mocks__/browser.js',
82+
'^uint8array-extras.*' : '<rootDir>/__mocks__/uint8array-extras.js',
8283
},
8384

8485
// An array of regexp pattern strings, matched against all module paths before considered 'visible' to the module loader

0 commit comments

Comments
 (0)