Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
ribeiromiranda committed May 9, 2023
0 parents commit ef3e1b8
Showing 22 changed files with 8,176 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .bra.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
[run]
init_cmds = [ # Commands run in start
["yarn", "build-dev"],
["yarn", "electron"]
]
watch_all = true # Watch all sub-directories
watch_dirs = ["./"] # Directories to watch
watch_exts = [".tsx", ".ts", ".html", ".css"] # Extensions to watch
env_files = [] # Load env vars from files
ignore = [".git", "node_modules", "./dist"] # Directories to exclude from watching
ignore_files = [] # Regexps for ignoring specific notifies
follow_symlinks = false # Enable/disable following symbolic links of sub directories
build_delay = 1500 # Minimal interval to Trigger build event
interrupt_timout = 15 # Time to wait until force kill
graceful_kill = false # Wait for exit and before directly kill
cmds = [ # Commands to run
["yarn", "build-dev"]
]

[sync]
listen_addr = ":5050"
remote_addr = ":5050"
16 changes: 16 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# http://editorconfig.org
root = true

[*]
indent_style = space
indent_size = 2
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
max_line_length = 120

[*.{js,ts,tsx,scss}]
quote_type = single

[*.md]
trim_trailing_whitespace = false
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
dist/
node_modules/
.yarn/cache
.yarn/install-state.gz
12 changes: 12 additions & 0 deletions .yarn/patches/react-split-pane-npm-0.1.92-93dbf51dff.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
diff --git a/index.d.ts b/index.d.ts
index d116f54d6da12d24b48e24ff3636c9066059aa58..93290945d8b1818cab893d6466179b33869a47b9 100644
--- a/index.d.ts
+++ b/index.d.ts
@@ -25,6 +25,7 @@ export type SplitPaneProps = {
pane2Style?: React.CSSProperties;
resizerClassName?: string;
step?: number;
+ children?: React.ReactNode;
};

export type SplitPaneState = {
873 changes: 873 additions & 0 deletions .yarn/releases/yarn-3.5.1.cjs

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
nodeLinker: node-modules

yarnPath: .yarn/releases/yarn-3.5.1.cjs
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# fermions
Binary file added assets/fermions-workflow-standalone.wasm
Binary file not shown.
Loading
Oops, something went wrong.

0 comments on commit ef3e1b8

Please sign in to comment.