-
Notifications
You must be signed in to change notification settings - Fork 8.5k
Replace tsc compilation with transpile with babel on kbn plugin helpers for typescript #36769
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
Merged
mistic
merged 16 commits into
elastic:master
from
mistic:typescript-with-babel7-for-kbn-plugin-helpers
May 31, 2019
Merged
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
aa43ef3
chore(NA): add transpile with babel the typescript files on xpack whe…
mistic 97714c3
chore(NA): merge and solve conflicts with master.
mistic 370a6cc
chore(NA): fix the globs for public folders inside server paths
mistic a651377
docs(NA): add comments to explain globs.
mistic cd1fe8f
Merge branch 'master' into typescript-with-babel7-for-kbn-plugin-helpers
mistic b9ad51c
chore(NA): use pipeline instead of async pipeline promise from dev ut…
mistic 878b695
chore(NA): merge and solve conflicts with master
mistic 22f8278
chore(NA): apply documented way to use stream pipeline.
mistic f687d3f
Merge branch 'master' into typescript-with-babel7-for-kbn-plugin-helpers
mistic ce2b313
Merge branch 'master' into typescript-with-babel7-for-kbn-plugin-helpers
mistic 202c812
chore(NA): exclude test files from the build transpilation.
mistic d5557d7
chore(NA): merge and solve conflicts with master.
mistic a2e1032
chore(NA): add ignore for eslint complexity warning
mistic 5a0ab52
chore(na): fix bad added type files.
mistic 1bb1d50
chore(NA): merge and solve conflicts with master.
mistic 3512804
fix(NA): unused type exports
mistic 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
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.
note: with this change on the latest master I'm getting
error Couldn't find package "@kbn/babel-preset@1.0.0" required by "@kbn/plugin-helpers@link:../../kibana/packages/kbn-plugin-helpers" on the "npm" registry.onyarn kbn bootstrap(right afteryarn kbn clean). Am I doing something wrong? :)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.
That package is still at
1.0.0locally, and it works for me, but we've been doing a fair amount of upgrades lately and I've had to wipe out my node_modules directory more frequently than desired becauseyarnisn't able to properly patch the directory correctly.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.
That's weird,
yarn kbn cleanshould removenode_modules, but that still doesn't help. Anyway, if it becomes annoying, I'll try to investigate and give you folks more details :)