Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci(): add source map support to node sandbox #9686

Merged
merged 4 commits into from
Feb 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .codesandbox/templates/node/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
},
"devDependencies": {
"nodemon": "^2.0.19",
"open-cli": "^7.0.1"
"open-cli": "^7.0.1",
"source-map-support": "^0.5.21"
},
"keywords": []
}
3 changes: 2 additions & 1 deletion .codesandbox/templates/node/src/index.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import http from 'http';
import * as fabric from 'fabric/node';
import http from 'http';
import 'source-map-support/register.js';

const port = Number(process.argv[2]);

Expand Down
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@

## [next]

- fix(): first touch gesture [#9684](https://github.com/fabricjs/fabric.js/pull/9684)
- ci(): add source map support to node sandbox [#9686](https://github.com/fabricjs/fabric.js/pull/9686)
- fix(): Correct type mainTouchId initialization [#9684](https://github.com/fabricjs/fabric.js/pull/9684)
- feat(Circle): Add counterclockwise parameter to Circle class [#9670](https://github.com/fabricjs/fabric.js/pull/9670)

## [6.0.0-beta19]
Expand Down
Loading