-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.gitignore
53 lines (39 loc) · 1001 Bytes
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
.vscode/*
!/.vscode/rrweb-monorepo.code-workspace
.idea
node_modules
package-lock.json
tsconfig.tsbuildinfo
# since this repo is referenced from the highlight monorepo which has its own yarn.lock file,
# don't include yarn.lock files from rrweb to avoid interfering with the monorepo
yarn.lock
.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions
packages/rrweb-player/lib
packages/rrweb-player/public
packages/rrweb-player/.svelte-kit/ambient.d.ts
temp
*.log
.env
.DS_Store
# output of `yarn build`
build
dist
# turbo cache
.turbo
# needed to store puppeteer binaries
.cache/*
!.gitkeep
# emacs working files end in a tilde
*~
# `.yarn/install-state.gz` is an optimization file that you shouldn't ever have to commit.
# It simply stores the exact state of your project so that the next commands can boot without having to resolve your workspaces all over again.
.yarn/install-state.gz
# for vite
vite.config.js.timestamp-*
vite.config.ts.timestamp-*