-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: jsii-docgen.js is not bundled into the package
After the introduction of projen, the CLI was not compiled anymore (only files under `src/` are compiled) so the .js file of the CLI was not bundled into the package.
- Loading branch information
Elad Ben-Israel
committed
Jul 19, 2020
1 parent
a2cb7b7
commit f90c442
Showing
2 changed files
with
3 additions
and
2 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,2 +1,3 @@ | ||
#!/usr/bin/env node | ||
require('./jsii-docgen.js'); | ||
// eslint-disable-next-line @typescript-eslint/no-require-imports | ||
require('../lib/cli.js'); |
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