-
Notifications
You must be signed in to change notification settings - Fork 252
feat: use new read/load assembly functions everywhere #3600
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
Merged
Merged
Changes from all commits
Commits
Show all changes
51 commits
Select commit
Hold shift + click to select a range
0068b7f
new module for jsii utility functions
kaizencc 74bd29c
update readme and package.json
kaizencc 5bd3929
prove that new module works
kaizencc 759b7d7
move spec file names to @jsii/spec and re-export in @jsii/utils
kaizencc ca54f78
update project structure for out-of-source building
kaizencc c802eb2
getAssemblyFile returns path to SPEC_FILE_NAME, and loadAssemblyFromP…
kaizencc 7d75f79
add tests on error messages
kaizencc b6abc5d
fix formatting for writing assembly
kaizencc b820c0d
add command line option compressAssembly
kaizencc 8f0f909
jsii-reflect change wip
kaizencc f60a57a
add validation prop to load assembly
kaizencc 83081c7
Merge branch 'conroy/jsiiutils' of https://github.com/aws/jsii into c…
kaizencc ded1036
more progress
kaizencc 7742e78
add validate to loadfrompath
kaizencc 34a4bf0
Merge branch 'conroy/jsiiutils' of https://github.com/aws/jsii into c…
kaizencc 7f31887
fix type-system.ts
kaizencc 7827f02
changes to jsii
kaizencc 45ad28c
changes to rosetta, one test failing
kaizencc 1b105bd
jsii-rosetta uses centralized assembly helper functions
kaizencc 9b42e8d
minor improvements
kaizencc af821cd
standardize spec_file_name
kaizencc e33bed0
remove all .jsii usage
kaizencc 3deb6f9
Merge branch 'main' into conroy/jsiiutils
kaizencc cac5532
move compress into a property bag
kaizencc 417df72
refactor schema validation error message
kaizencc c7c8adf
merge upstream
kaizencc 8f7504f
update kernel
kaizencc fc9ec85
npmignore
kaizencc a0ac235
update for new writeassembly function sig
kaizencc df48779
remove debugging logic
kaizencc f06ca4a
fix test
kaizencc 2ac427d
Merge branch 'conroy/jsiiutils' of https://github.com/aws/jsii into c…
kaizencc fc154f6
Merge branch 'main' into conroy/jsiiutils
kaizencc 550282a
more @jsii/utils to @jsii/spec
kaizencc 97e080f
update example usage
kaizencc 013d3d2
export functions from @jsii/spec
kaizencc f7f60a4
remove @jsii/utils
kaizencc ae4ad42
merge
kaizencc 8d38040
update kernel
kaizencc d657866
update kernel
kaizencc d9af12d
update jsii-reflect
kaizencc e7bfd19
reupdate kernel and runtime
kaizencc 35c4e0a
update jsii-rosetta
kaizencc c4dce18
more rosetta
kaizencc ded9455
update jsii
kaizencc 925bf7b
npmignore
kaizencc af24858
more npmignores
kaizencc 29eeb8c
Merge branch 'main' into conroy/jsiiutils-extension
RomainMuller 329c153
add error message to blind catch
kaizencc a6f9fb9
merge conflict
kaizencc 5daf3af
Merge branch 'conroy/jsiiutils-extension' of https://github.com/aws/j…
kaizencc File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,8 +4,9 @@ | |
*.tgz | ||
|
||
|
||
# Include .jsii | ||
# Include .jsii and .jsii.gz | ||
!.jsii | ||
!.jsii.gz | ||
|
||
|
||
# Exclude jsii outdir | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,8 +4,9 @@ | |
*.tgz | ||
|
||
|
||
# Include .jsii | ||
# Include .jsii and .jsii.gz | ||
!.jsii | ||
!.jsii.gz | ||
|
||
|
||
# Exclude jsii outdir | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,8 +4,9 @@ | |
*.tgz | ||
|
||
|
||
# Include .jsii | ||
# Include .jsii and .jsii.gz | ||
!.jsii | ||
!.jsii.gz | ||
|
||
|
||
# Exclude jsii outdir | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,8 +3,9 @@ | |
!*.d.ts | ||
*.tgz | ||
|
||
# Include .jsii | ||
# Include .jsii and .jsii.gz | ||
!.jsii | ||
!.jsii.gz | ||
|
||
|
||
# Exclude jsii outdir | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good catch, @RomainMuller, is this better?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yap