-
Notifications
You must be signed in to change notification settings - Fork 245
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(jsii): flatten out dependency list (#454)
Stop deeply nesting dependency packages and their dependencies. All dependencies are now flattened to a single transitive dependency closure. This will save a lot of space and processing power in processing the assembly. Make jsii-reflect validate the schema (including the version). It wasn't doing that before!! Fixes #453.
- Loading branch information
Showing
36 changed files
with
924 additions
and
292 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,15 @@ | ||
{ | ||
"private": true, | ||
"license": "Apache-2.0", | ||
"devDependencies": { | ||
"lerna": "^3.13.1", | ||
"nodeunit": "^0.11.3", | ||
"nyc": "^13.3.0", | ||
"tslint": "^5.15.0", | ||
"typescript": "^3.4.2" | ||
} | ||
"private": true, | ||
"license": "Apache-2.0", | ||
"devDependencies": { | ||
"lerna": "^3.13.1", | ||
"nodeunit": "^0.11.3", | ||
"nyc": "^13.3.0", | ||
"tslint": "^5.15.0", | ||
"typescript": "^3.4.2" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/awslabs/jsii.git" | ||
} | ||
} |
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 |
---|---|---|
@@ -1,3 +1,7 @@ | ||
export interface IVeryBaseInterface { | ||
foo(): void; | ||
} | ||
|
||
export interface VeryBaseProps { | ||
readonly foo: Very; | ||
} | ||
|
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
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
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
Oops, something went wrong.