-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(perf) Ported to preact + better lib fix. Halved bundle size, 2x fast…
…er load
- Loading branch information
David Buezas
committed
Oct 9, 2021
1 parent
f69089e
commit 460bafc
Showing
12 changed files
with
1,165 additions
and
914 deletions.
There are no files selected for viewing
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,20 @@ | ||
{ | ||
"name": "chrome-palette", | ||
"version": "1.2.0", | ||
"version": "1.2.1", | ||
"private": false, | ||
"author": "[email protected]", | ||
"dependencies": { | ||
"@types/node": "^12.20.24", | ||
"@types/node": "^16.10.3", | ||
"@types/react": "^17.0.20", | ||
"@types/react-dom": "^17.0.9", | ||
"date-fns": "^2.23.0", | ||
"esbuild": "^0.12.28", | ||
"esbuild": "^0.13.4", | ||
"preact": "^10.5.14", | ||
"react": "^17.0.2", | ||
"react-command-palette": "^0.16.2", | ||
"react-dom": "^17.0.2", | ||
"typescript": "^4.4.2", | ||
"web-vitals": "^1.1.2", | ||
"web-vitals": "^2.1.1", | ||
"webextension-polyfill": "^0.8.0", | ||
"ws": "^8.2.2" | ||
}, | ||
|
@@ -24,7 +25,8 @@ | |
}, | ||
"devDependencies": { | ||
"@types/webextension-polyfill": "^0.8.0", | ||
"@types/ws": "^7.4.7", | ||
"@types/ws": "^8.2.0", | ||
"esbuild-plugin-alias": "^0.2.0", | ||
"npm-watch": "^0.11.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
import React from "react"; | ||
import "./SampleAtomCommand.css"; | ||
|
||
type Props = { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
// react-shim.js | ||
import { h, Fragment } from 'preact' | ||
export { h, Fragment } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters