-
Notifications
You must be signed in to change notification settings - Fork 948
Remove storage-types/exp #4507
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
Remove storage-types/exp #4507
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ | |
"lint": "eslint -c .eslintrc.js '**/*.ts' --ignore-path '../../.gitignore'", | ||
"lint:fix": "eslint --fix -c .eslintrc.js '**/*.ts' --ignore-path '../../.gitignore'", | ||
"build": "rollup -c rollup.config.compat.js && yarn build:exp", | ||
"build:exp": "rollup -c rollup.config.exp.js ; yarn api-report", | ||
"build:exp": "rollup -c rollup.config.exp.js && yarn api-report", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think we want There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Oh, ok, restored. |
||
"build:deps": "lerna run --scope @firebase/storage --include-dependencies build", | ||
"dev": "rollup -c -w", | ||
"test": "run-p test:browser lint", | ||
|
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.
We can directly export them instead of import, then export since
./public-types
is part of the project, so we won't have the typings in the js file issues.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.
Also can we just export every thing from
./public-types
. All types in./public-types
are supposed to be public/exported.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.
Done. A number of these types are used in this file so I kept those imports.