mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
* draft impl of windows watcher * synchronous watcher * working standalone watcher * in progress changes to watcher * make watcher non-global * prepare watcher for windows impl * add windows watcher scaffold and clean up imports * fix inotify * make watch code more generic over platforms * fix visibility * watcher starts without error * printing changes works * basic windows watching works * handle process exit from watcher * cleanup in process cloning * clean up logging and panic handling * fix hot reload test on windows * misc cleanup around watcher * make watch test actually useful * [autofix.ci] apply automated fixes * remove old files * clean up watchers * update .gitignore * rework windows watcher into single watcher instance watching top level project dir * use non-strict utf16 conversion * change to contains * fix mac and linux compile * add baseline in crash report (#8606) * allow linking bins that do not exist. (#8605) * fix linux compile * fix linux compile (again) * remove outdated todo --------- Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: dave caruso <me@paperdave.net>
167 lines
2.2 KiB
Plaintext
167 lines
2.2 KiB
Plaintext
.DS_Store
|
|
zig-cache
|
|
packages/*/*.wasm
|
|
*.o
|
|
*.a
|
|
profile.json
|
|
|
|
node_modules
|
|
.envrc
|
|
.swcrc
|
|
yarn.lock
|
|
dist
|
|
*.tmp
|
|
*.log
|
|
*.out.js
|
|
*.out.refresh.js
|
|
**/package-lock.json
|
|
build
|
|
*.wat
|
|
zig-out
|
|
pnpm-lock.yaml
|
|
README.md.template
|
|
src/deps/zig-clap/example
|
|
src/deps/zig-clap/README.md
|
|
src/deps/zig-clap/.github
|
|
src/deps/zig-clap/.gitattributes
|
|
out
|
|
outdir
|
|
|
|
.trace
|
|
cover
|
|
coverage
|
|
coverv
|
|
*.trace
|
|
github
|
|
out.*
|
|
out
|
|
.parcel-cache
|
|
esbuilddir
|
|
*.bun
|
|
parceldist
|
|
esbuilddir
|
|
outdir/
|
|
outcss
|
|
.next
|
|
txt.js
|
|
.idea
|
|
.vscode/cpp*
|
|
.vscode/clang*
|
|
|
|
node_modules_*
|
|
*.jsb
|
|
*.zip
|
|
bun-zigld
|
|
bun-singlehtreaded
|
|
bun-nomimalloc
|
|
bun-mimalloc
|
|
examples/lotta-modules/bun-yday
|
|
examples/lotta-modules/bun-old
|
|
examples/lotta-modules/bun-nofscache
|
|
|
|
src/node-fallbacks/out/*
|
|
src/node-fallbacks/node_modules
|
|
sign.json
|
|
release/
|
|
*.dmg
|
|
sign.*.json
|
|
packages/debug-*
|
|
packages/bun-cli/postinstall.js
|
|
packages/bun-*/bun
|
|
packages/bun-*/bun-profile
|
|
packages/bun-*/debug-bun
|
|
packages/bun-*/*.o
|
|
packages/bun-cli/postinstall.js
|
|
|
|
packages/bun-cli/bin/*
|
|
bun-test-scratch
|
|
misctools/fetch
|
|
|
|
src/deps/libiconv
|
|
src/deps/openssl
|
|
src/tests.zig
|
|
*.blob
|
|
src/deps/s2n-tls
|
|
.npm
|
|
.npm.gz
|
|
|
|
bun-binary
|
|
|
|
src/deps/PLCrashReporter/
|
|
|
|
*.dSYM
|
|
*.crash
|
|
misctools/sha
|
|
packages/bun-wasm/*.mjs
|
|
packages/bun-wasm/*.cjs
|
|
packages/bun-wasm/*.map
|
|
packages/bun-wasm/*.js
|
|
packages/bun-wasm/*.d.ts
|
|
packages/bun-wasm/*.d.cts
|
|
packages/bun-wasm/*.d.mts
|
|
*.bc
|
|
|
|
src/fallback.version
|
|
src/runtime.version
|
|
*.sqlite
|
|
*.database
|
|
*.db
|
|
misctools/machbench
|
|
*.big
|
|
.eslintcache
|
|
|
|
/bun-webkit
|
|
|
|
src/deps/c-ares/build
|
|
src/bun.js/bindings-obj
|
|
src/bun.js/debug-bindings-obj
|
|
|
|
failing-tests.txt
|
|
test.txt
|
|
myscript.sh
|
|
|
|
cold-jsc-start
|
|
cold-jsc-start.d
|
|
|
|
/testdir
|
|
/test.ts
|
|
/test.js
|
|
|
|
src/js/out/modules*
|
|
src/js/out/functions*
|
|
src/js/out/tmp
|
|
src/js/out/DebugPath.h
|
|
|
|
make-dev-stats.csv
|
|
|
|
.uuid
|
|
tsconfig.tsbuildinfo
|
|
|
|
test/js/bun/glob/fixtures
|
|
*.lib
|
|
*.pdb
|
|
CMakeFiles
|
|
build.ninja
|
|
.ninja_deps
|
|
.ninja_log
|
|
CMakeCache.txt
|
|
cmake_install.cmake
|
|
compile_commands.json
|
|
|
|
*.lib
|
|
x64
|
|
**/*.vcxproj*
|
|
**/*.sln*
|
|
**/*.dir
|
|
**/*.pdb
|
|
|
|
/.webkit-cache
|
|
/.cache
|
|
/src/deps/libuv
|
|
/build-*/
|
|
|
|
.vs
|
|
|
|
**/.verdaccio-db.json
|
|
/test-report.md
|
|
/test-report.json |