-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(build): publish Node (server) friendly bundles (#3483)
Co-authored-by: Daniel Sogl <[email protected]>
- Loading branch information
1 parent
0932e11
commit b4227f2
Showing
5 changed files
with
46 additions
and
1 deletion.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,15 @@ | ||
import { cleanupNgx, generateDeclarationFiles, modifyMetadata, transpileNgx, transpileNgxCore } from '../build/ngx'; | ||
import { | ||
cleanupNgx, | ||
generateLegacyBundles, | ||
generateDeclarationFiles, | ||
modifyMetadata, | ||
transpileNgx, | ||
transpileNgxCore, | ||
} from '../build/ngx'; | ||
|
||
transpileNgxCore(); | ||
transpileNgx(); | ||
generateLegacyBundles(); | ||
generateDeclarationFiles(); | ||
modifyMetadata(); | ||
cleanupNgx(); |
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