Skip to content

Commit

Permalink
chore: cleanup and simplify examples
Browse files Browse the repository at this point in the history
- Updated `.gitignore` file
- Simplified and cleanedup examples
- Removed examples that serve almost zero value:
  - `navigation`
  - `parent-window`
  - `web`
  - `workspace`
  - `run-iteration`
  - `plugins/tauri-plugin-sample`: the plugin example in `api` example is enough
  • Loading branch information
amrbashir committed Aug 22, 2024
1 parent c33adb1 commit 784eb23
Show file tree
Hide file tree
Showing 111 changed files with 1,800 additions and 18,558 deletions.
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

0 comments on commit 784eb23

Please sign in to comment.