2023-04-25 11:01:25 +00:00
|
|
|
**/node_modules/*
|
|
|
|
**/out/*
|
|
|
|
**/dist/*
|
|
|
|
**/dist-cjs/*
|
|
|
|
**/dist-esm/*
|
|
|
|
**/.tsbuild*
|
|
|
|
**/.next/*
|
|
|
|
*.md
|
|
|
|
**/_archive/*
|
|
|
|
**/*.css.map
|
|
|
|
**/*.js.map
|
|
|
|
**/*.d.ts
|
|
|
|
**/api/*
|
|
|
|
!**/pages/api/*
|
2023-05-02 12:25:26 +00:00
|
|
|
**/*.json
|
2023-05-09 16:08:38 +00:00
|
|
|
**/lazy.config.ts
|
|
|
|
**/next.config.js
|
|
|
|
**/setupTests.js
|
|
|
|
**/setupJest.js
|
2024-03-11 14:08:04 +00:00
|
|
|
**/jestResolver.js
|
2023-05-09 20:21:45 +00:00
|
|
|
apps/vscode/extension/editor
|
2023-05-11 22:15:24 +00:00
|
|
|
apps/examples/www
|
2023-06-17 09:46:46 +00:00
|
|
|
apps/docs/api-content.json
|
2023-05-11 22:15:24 +00:00
|
|
|
apps/docs/content.json
|
|
|
|
apps/vscode/extension/editor/index.js
|
2024-01-16 14:38:05 +00:00
|
|
|
apps/vscode/extension/editor/tldraw-assets.json
|
|
|
|
**/sentry.server.config.js
|
|
|
|
**/scripts/upload-sourcemaps.js
|
|
|
|
**/coverage/**/*
|
2024-01-19 15:31:01 +00:00
|
|
|
|
use native structuredClone on node, cloudflare workers, and in tests (#3166)
Currently, we only use native `structuredClone` in the browser, falling
back to `JSON.parse(JSON.stringify(...))` elsewhere, despite Node
supporting `structuredClone` [since
v17](https://developer.mozilla.org/en-US/docs/Web/API/structuredClone)
and Cloudflare Workers supporting it [since
2022](https://blog.cloudflare.com/standards-compliant-workers-api/).
This PR adjusts our shim to use the native `structuredClone` on all
platforms, if available.
Additionally, `jsdom` doesn't implement `structuredClone`, a bug [open
since 2022](https://github.com/jsdom/jsdom/issues/3363). This PR patches
`jsdom` environment in all packages/apps that use it for tests.
Also includes a driveby removal of `deepCopy`, a function that is
strictly inferior to `structuredClone`.
### Change Type
<!-- ❗ Please select a 'Scope' label ❗️ -->
- [x] `sdk` — Changes the tldraw SDK
- [x] `dotcom` — Changes the tldraw.com web app
- [ ] `docs` — Changes to the documentation, examples, or templates.
- [ ] `vs code` — Changes to the vscode plugin
- [ ] `internal` — Does not affect user-facing stuff
<!-- ❗ Please select a 'Type' label ❗️ -->
- [ ] `bugfix` — Bug fix
- [ ] `feature` — New feature
- [x] `improvement` — Improving existing features
- [x] `chore` — Updating dependencies, other boring stuff
- [ ] `galaxy brain` — Architectural changes
- [ ] `tests` — Changes to any test code
- [ ] `tools` — Changes to infrastructure, CI, internal scripts,
debugging tools, etc.
- [ ] `dunno` — I don't know
### Test Plan
1. A smoke test would be enough
- [ ] Unit Tests
- [x] End to end tests
2024-03-18 17:16:09 +00:00
|
|
|
apps/dotcom/public/sw.js
|
|
|
|
|
|
|
|
patchedJestJsDom.js
|