You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(cdk): use built-in source map support (#32115)
### Reason for this change
We don't need to use the third party `source-map-support` package anymore to achieve the same result.
### Description of changes
We use `process.setSourceMapsEnabled(true)` instead. However unlike the previous package, this command needs to be run _before_ we import any other files, otherwise it won't work. We therefore move it into the executable.
### Description of how you validated changes
Manual verification
### Checklist
- [x] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md)
----
*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
Copy file name to clipboardExpand all lines: packages/aws-cdk/THIRD_PARTY_LICENSES
-63
Original file line number
Diff line number
Diff line change
@@ -27682,32 +27682,6 @@ FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TOR
27682
27682
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27683
27683
27684
27684
27685
-
----------------
27686
-
27687
-
** [email protected] - https://www.npmjs.com/package/buffer-from/v/1.1.2 | MIT
27688
-
MIT License
27689
-
27690
-
Copyright (c) 2016, 2018 Linus Unnebäck
27691
-
27692
-
Permission is hereby granted, free of charge, to any person obtaining a copy
27693
-
of this software and associated documentation files (the "Software"), to deal
27694
-
in the Software without restriction, including without limitation the rights
27695
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
27696
-
copies of the Software, and to permit persons to whom the Software is
27697
-
furnished to do so, subject to the following conditions:
27698
-
27699
-
The above copyright notice and this permission notice shall be included in all
27700
-
copies or substantial portions of the Software.
27701
-
27702
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
27703
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
27704
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
27705
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
27706
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
27707
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
27708
-
SOFTWARE.
27709
-
27710
-
27711
27685
----------------
27712
27686
27713
27687
** [email protected] - https://www.npmjs.com/package/camelcase/v/6.3.0 | MIT
@@ -29730,43 +29704,6 @@ The above copyright notice and this permission notice shall be included in all c
29730
29704
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29731
29705
29732
29706
29733
-
----------------
29734
-
29735
-
** [email protected] - https://www.npmjs.com/package/source-map-support/v/0.5.21 | MIT
0 commit comments