Skip to content

Commit

Permalink
update depencies
Browse files Browse the repository at this point in the history
- remove dirty hack due to vue update vuejs/core#2399
  • Loading branch information
5onderling committed Dec 30, 2020
1 parent 6a74dc7 commit fb1e700
Show file tree
Hide file tree
Showing 3 changed files with 105 additions and 124 deletions.
215 changes: 100 additions & 115 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,17 @@
"license": "ISC",
"devDependencies": {
"@types/chrome": "0.0.127",
"@vue/compiler-sfc": "^3.0.4",
"esbuild": "^0.8.23",
"@vue/compiler-sfc": "^3.0.5",
"esbuild": "^0.8.27",
"esm": "^3.2.25",
"node-watch": "^0.7.1",
"sass": "^1.30.0"
"sass": "^1.32.0"
},
"dependencies": {
"@vue-reactivity/watch": "^0.1.6",
"@vue/reactivity": "^3.0.4",
"@vue/reactivity": "^3.0.5",
"fast-fuzzy": "^1.10.8",
"vue": "^3.0.4"
"vue": "^3.0.5"
},
"esm": {
"await": true
Expand Down
4 changes: 0 additions & 4 deletions src/content/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,6 @@ const bmBar = Object.assign(document.createElement('div'), {

const shadowRoot = bmBar.attachShadow({ mode: 'closed' });

const NOOP = () => {};
shadowRoot.removeAttribute = NOOP;
shadowRoot.setAttribute = NOOP;

createApp(() => [h('style', window.styles), h(TheBookmarkBar)]).mount(shadowRoot);

document.body.append(bmBar);

0 comments on commit fb1e700

Please sign in to comment.