Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: cleanup and simplify examples #10743

Merged
merged 13 commits into from
Aug 26, 2024
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
106 changes: 36 additions & 70 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,89 +1,55 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# smoke-tests repo
/smoke-tests

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# nyc test coverage
.nyc_output
# dependency directories
node_modules/

# node-waf configuration
.lock-wscript
# Optional npm and yarn cache directory
.npm/
.yarn/

# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release
# Output of 'npm pack'
*.tgz

# Dependency directories
node_modules/
jspm_packages/
# dotenv environment variables file
.env

# Typescript v1 declaration files
typings/
# .vscode workspace settings file
.vscode/settings.json

# Optional npm cache directory
.npm
# npm, yarn and bun lock files
package-lock.json
yarn.lock
bun.lockb

# Optional yarn cache directory
.yarn
# rust compiled folders
target/

# Optional eslint cache
.eslintcache
# test video for streaming example
streaming_example_test_video.mp4

# Optional REPL history
.node_repl_history
# examples /gen directory
/examples/**/gen/

# Output of 'npm pack'
*.tgz
# old cli directories
/tooling/cli.js
/tooling/cli.rs

# Yarn Integrity file
.yarn-integrity
# logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# dotenv environment variables file
.env
# runtime data
pids
*.pid
*.seed
*.pid.lock

# miscellaneous
/.vs
.DS_Store
.Thumbs.db
*.sublime*
.idea
debug.log
package-lock.json
.vscode/settings.json
*/.vscode/
proptest-regressions/
TODO.md

# rust compiled folders
target

# lock for libs
#/Cargo.lock Committed to prevent msrv checks from failing
/tooling/bench/tests/Cargo.lock
/yarn.lock

# ignore frida handlers
__handlers__/

# benches
gh-pages
test_video.mp4

# old cli directories
/tooling/cli.js
/tooling/cli.rs
60 changes: 60 additions & 0 deletions Cargo.lock

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

4 changes: 4 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ members = [
# integration tests
"core/tests/restart",
"core/tests/acl",

# examples
"examples/file-associations/src-tauri",
"examples/api/src-tauri",
]

exclude = [
Expand Down
Loading
Loading