-
Notifications
You must be signed in to change notification settings - Fork 246
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
feat: add support for bin-scripts (python only) #1941
Merged
Merged
Changes from 1 commit
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
b1547a2
feat: add bin script folder
kozlove-aws aaf8d7e
feat: Add creation scripts in bin folder and adding it to setup.py
kozlove-aws 7e9c9e2
feat: add invokeBinScript function
kozlove-aws a1a8847
Merge remote-tracking branch 'origin/master' into add_bin_script_folder
RomainMuller 66943e6
Add missing _ prefix to Kernel prototype private method
RomainMuller 48ad9f5
Merge branch 'master' of https://github.com/aws/jsii into add_bin_scr…
dcfe863
feat: add unit test
d5edeb2
Merge branch 'master' into add_bin_script_folder
191650e
fix: rename test script, small fixes
375147b
fix snapshots
RomainMuller 7ccdd96
Merge remote-tracking branch 'origin/main' into add_bin_script_folder
RomainMuller db66ffd
Merge remote-tracking branch 'origin/main' into add_bin_script_folder
RomainMuller 122b17e
fix linter offense
RomainMuller 26b3a5b
Add cmd wrapper for Windows
2735e68
Merge branch 'main' into add_bin_script_folder
RomainMuller 1d7ced4
fix test expectations
RomainMuller f42d160
Fix Windows tests
fc2ec7c
Merge branch 'main' into add_bin_script_folder
mergify[bot] 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 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 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 | ||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -1429,6 +1429,13 @@ class PythonModule implements PythonType { | |||||||||||||||||
code.line(`from ${'.'.repeat(distanceFromRoot + 1)}_jsii import *`); | ||||||||||||||||||
|
||||||||||||||||||
this.emitRequiredImports(code, context); | ||||||||||||||||||
if (this.assembly.bin) { | ||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I like being explicit here (JS' truthiness/falsiness is a little awkward)
Suggested change
|
||||||||||||||||||
code.line(`print('BIN-scripts were found.');`); | ||||||||||||||||||
const scripts = Object.keys(this.assembly.bin); | ||||||||||||||||||
for (const script of scripts) { | ||||||||||||||||||
code.line(`print('${script}: ${this.assembly.bin[script]}');`); | ||||||||||||||||||
} | ||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||
} | ||||||||||||||||||
} | ||||||||||||||||||
|
||||||||||||||||||
// Emit all of our members. | ||||||||||||||||||
|
This file contains 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 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
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.
Let's tighten this one up from the start (cannot fix the older fields to
readonly
because... backwards-compatibility... but we can be nice with the new ones!)