Skip to content

Commit 9979f9e

Browse files
authored
feat: add react popup with some basic functionality (#3550)
1 parent 4a61c04 commit 9979f9e

34 files changed

+35645
-5050
lines changed
+24-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,24 @@
1-
dist/
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.js
7+
8+
# testing
9+
/coverage
10+
11+
# production
12+
/build
13+
/dist
14+
15+
# misc
16+
.DS_Store
17+
.env.local
18+
.env.development.local
19+
.env.test.local
20+
.env.production.local
21+
22+
npm-debug.log*
23+
yarn-debug.log*
24+
yarn-error.log*

applications/tari_web_extension/webpack.config.js applications/tari_web_extension/_webpack.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const WasmPackPlugin = require("@wasm-tool/wasm-pack-plugin");
55
const KEY_MANAGER_PATH = "../../base_layer/key_manager/";
66

77
module.exports = {
8-
entry: "./src/index.js",
8+
entry: "./rust/index.js",
99
output: {
1010
path: path.resolve(__dirname, "dist"),
1111
filename: "index.js",

0 commit comments

Comments
 (0)