-
Notifications
You must be signed in to change notification settings - Fork 976
Implementing features from API audit and node backport #9284
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
Open
MarkDuckworth
wants to merge
29
commits into
feat/pipelines
Choose a base branch
from
markduckworth/ppl-node-backport
base: feat/pipelines
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 23 commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
d66ddb0
Add PipelineOptions and StructuredPipeline
MarkDuckworth 45688b0
Testing for pipeline options
MarkDuckworth b3d8c75
Test for error handling in Piplines
MarkDuckworth 281c441
Merge branch 'markduckworth/pipeline-options' into markduckworth/ppl-…
MarkDuckworth e111ec1
Refactor and test pipeline options implementation
MarkDuckworth 5e9b24d
OptionsUtil test
MarkDuckworth 527131c
Pipeline and stage options. Tangential renames and minor fixes
MarkDuckworth 198f829
Rename and cleanup from api audit
MarkDuckworth 73b0615
Rename and cleanup from api audit
MarkDuckworth f07a909
Cleanup
MarkDuckworth f9fef48
Update constant(boolean) to return BooleanExpression
MarkDuckworth f0cc89b
Add ifError overloads for BooleanExpression
MarkDuckworth e261a1a
Add abs expression and did formatting
MarkDuckworth 6304b8e
Implemente round with precision and removed Expr#log(base) due to pot…
MarkDuckworth 9f70ee6
Add compile script to package.json for quicker development feedback
MarkDuckworth bd4efe2
Merge branch 'main' of github.com:firebase/firebase-js-sdk into markd…
MarkDuckworth e62f29b
Rename esm2017 filenames to esm to match changes in package.json from…
MarkDuckworth 814e268
Fixing circular dependency errors in the build.
MarkDuckworth 4300d65
fixing circular dependency in the build
MarkDuckworth b78e49c
fixing bundler errors
MarkDuckworth 9695fa4
Fix isNumber implementation
MarkDuckworth 15fc1a7
Merge branch 'main' of github.com:firebase/firebase-js-sdk into markd…
MarkDuckworth 76dca29
Merge branch 'feat/pipelines' of github.com:firebase/firebase-js-sdk …
MarkDuckworth e9afbe4
fix fishfood build
MarkDuckworth 78e7ae0
Fixing exports
MarkDuckworth 41d8506
Implement concat
MarkDuckworth 5ddc9ce
prettier
MarkDuckworth 2cbd653
error, ifabsent, currenttimestamp, join
MarkDuckworth c008c06
arraySum and log10
MarkDuckworth 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 hidden or 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 hidden or 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 |
---|---|---|
|
@@ -8,6 +8,7 @@ | |
"author": "Firebase <[email protected]> (https://firebase.google.com/)", | ||
"scripts": { | ||
"bundle": "rollup -c", | ||
"compile": "tsc --emitDeclarationOnly --declaration -p tsconfig.json", | ||
"prebuild": "tsc --emitDeclarationOnly --declaration -p tsconfig.json; yarn api-report", | ||
"build": "run-p --npm-path npm build:lite build:main", | ||
"build:release": "yarn build && yarn typings:public", | ||
|
@@ -95,33 +96,33 @@ | |
"require": "./dist/lite/pipelines.node.cjs.js", | ||
"import": "./dist/lite/pipelines.node.mjs" | ||
}, | ||
"react-native": "./dist/lite/pipelines.rn.esm2017.js", | ||
"react-native": "./dist/lite/pipelines.rn.esm.js", | ||
"browser": { | ||
"require": "./dist/lite/pipelines.browser.cjs.js", | ||
"import": "./dist/lite/pipelines.browser.esm2017.js" | ||
"import": "./dist/lite/pipelines.browser.esm.js" | ||
}, | ||
"default": "./dist/lite/pipelines.browser.esm2017.js" | ||
"default": "./dist/lite/pipelines.browser.esm.js" | ||
}, | ||
"./pipelines": { | ||
"types": "./pipelines/pipelines.d.ts", | ||
"node": { | ||
"require": "./dist/pipelines.node.cjs.js", | ||
"import": "./dist/pipelines.node.mjs" | ||
}, | ||
"react-native": "./dist/index.rn.esm2017.js", | ||
"react-native": "./dist/index.rn.esm.js", | ||
"browser": { | ||
"require": "./dist/pipelines.cjs.js", | ||
"import": "./dist/pipelines.esm2017.js" | ||
"import": "./dist/pipelines.esm.js" | ||
}, | ||
"default": "./dist/pipelines.esm2017.js" | ||
"default": "./dist/pipelines.esm.js" | ||
}, | ||
"./package.json": "./package.json" | ||
}, | ||
"main": "dist/node-cjs/index.node.cjs.js", | ||
"main-esm": "dist/node-esm/index.node.mjs", | ||
"react-native": "dist/index.rn.js", | ||
"browser": "dist/index.esm.js", | ||
"module": "dist/index.esm.js", | ||
"browser": "dist/browser-esm2017/index.esm.js", | ||
"module": "dist/browser-esm2017/index.esm.js", | ||
"license": "Apache-2.0", | ||
"files": [ | ||
"dist", | ||
|
This file contains hidden or 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 hidden or 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 hidden or 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.
Oops, something went wrong.
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.
esm2017 to esm renames all come from main