-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build(package): refactoring build scripts with project ref / incremen…
…tal (#5032) * build(tsconfig): enable incremental, project references * build(package): generate package using top level root as-is * test(sideeffect): update import site snapshot * build(package): support subpath alias with top-level root * ci(circle): update ci scripts * build(package): remove unused dependencies * build(package): ensure alias script not throw * test(mocha): run test directly from compiled results * build(tsconfig): fix sourceroot for source, typemaps BREAKING CHANGES: esm2015 renamed to esm. (though this is undocumented) scoped package @reactivex/rxjs is being deprecated
- Loading branch information
Showing
41 changed files
with
316 additions
and
710 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 |
---|---|---|
|
@@ -29,7 +29,7 @@ jobs: | |
- checkout | ||
- *restore_cache | ||
- run: npm i | ||
- run: npm run build_all | ||
- run: npm run build:package | ||
- persist_to_workspace: | ||
root: . | ||
paths: | ||
|
@@ -63,7 +63,7 @@ jobs: | |
steps: | ||
- attach_workspace: *attach_options | ||
- run: npm i --no-save [email protected].* | ||
- run: npm run build_cjs | ||
- run: npm run compile | ||
|
||
workflows: | ||
version: 2 | ||
|
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 was deleted.
Oops, something went wrong.
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
|
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
var NotificationKind; | ||
|
||
(function(NotificationKind) { | ||
NotificationKind["NEXT"] = "N"; | ||
NotificationKind["ERROR"] = "E"; | ||
NotificationKind["COMPLETE"] = "C"; | ||
})(NotificationKind || (NotificationKind = {})); |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
var NotificationKind; | ||
|
||
(function(NotificationKind) { | ||
NotificationKind["NEXT"] = "N"; | ||
NotificationKind["ERROR"] = "E"; | ||
NotificationKind["COMPLETE"] = "C"; | ||
})(NotificationKind || (NotificationKind = {})); |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
var NotificationKind; | ||
|
||
(function(NotificationKind) { | ||
NotificationKind["NEXT"] = "N"; | ||
NotificationKind["ERROR"] = "E"; | ||
NotificationKind["COMPLETE"] = "C"; | ||
})(NotificationKind || (NotificationKind = {})); |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
var NotificationKind; | ||
|
||
(function(NotificationKind) { | ||
NotificationKind["NEXT"] = "N"; | ||
NotificationKind["ERROR"] = "E"; | ||
NotificationKind["COMPLETE"] = "C"; | ||
})(NotificationKind || (NotificationKind = {})); |
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 +1,9 @@ | ||
import "tslib"; | ||
|
||
var NotificationKind; | ||
|
||
(function(NotificationKind) { | ||
NotificationKind["NEXT"] = "N"; | ||
NotificationKind["ERROR"] = "E"; | ||
NotificationKind["COMPLETE"] = "C"; | ||
})(NotificationKind || (NotificationKind = {})); |
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 +1,9 @@ | ||
import "tslib"; | ||
|
||
var NotificationKind; | ||
|
||
(function(NotificationKind) { | ||
NotificationKind["NEXT"] = "N"; | ||
NotificationKind["ERROR"] = "E"; | ||
NotificationKind["COMPLETE"] = "C"; | ||
})(NotificationKind || (NotificationKind = {})); |
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 +1,9 @@ | ||
import "tslib"; | ||
|
||
var NotificationKind; | ||
|
||
(function(NotificationKind) { | ||
NotificationKind["NEXT"] = "N"; | ||
NotificationKind["ERROR"] = "E"; | ||
NotificationKind["COMPLETE"] = "C"; | ||
})(NotificationKind || (NotificationKind = {})); |
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 +1,9 @@ | ||
import "tslib"; | ||
|
||
var NotificationKind; | ||
|
||
(function(NotificationKind) { | ||
NotificationKind["NEXT"] = "N"; | ||
NotificationKind["ERROR"] = "E"; | ||
NotificationKind["COMPLETE"] = "C"; | ||
})(NotificationKind || (NotificationKind = {})); |
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.