mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-11-24 04:03:52 +03:00
d1c97bce7b
* chore: add root taurignore enhances the DX of running `tauri dev` in any of the examples folder - we don't need to watch the entire workspace for changes * extend ignore list
37 lines
655 B
Plaintext
37 lines
655 B
Plaintext
/.changes
|
|
/audits
|
|
/.vscode
|
|
|
|
# dependcies and artifacts directories
|
|
node_modules/
|
|
target/
|
|
dist/
|
|
|
|
# lock files
|
|
pnpm-lock.yaml
|
|
|
|
# autogenerated and minimized js file
|
|
crates/tauri/scripts/bundle.global.js
|
|
|
|
# this file is an IIFE, shouldn't be formatted
|
|
crates/tauri/scripts/process-ipc-message-fn.js
|
|
|
|
# cli templates should be formatted manually
|
|
# it also includes invalid json files that
|
|
# prettier can't handle
|
|
crates/tauri-cli/templates
|
|
|
|
# autogenerated files
|
|
**/autogenerated/**/*.md
|
|
packages/cli/index.js
|
|
packages/cli/index.d.ts
|
|
CHANGELOG.md
|
|
*schema.json
|
|
|
|
# WiX templates
|
|
*.wxs
|
|
|
|
# examples /gen directory
|
|
examples/**/src-tauri/gen
|
|
bench/**/src-tauri/gen
|