Skip to content

Commit

Permalink
ci(): add source map support to node sandbox (#9686)
Browse files Browse the repository at this point in the history
  • Loading branch information
ShaMan123 committed Feb 25, 2024
1 parent a05deec commit 825f233
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
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

0 comments on commit 825f233

Please sign in to comment.