-
Notifications
You must be signed in to change notification settings - Fork 30
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
feat: imported babel plugin #1233
Merged
Merged
Conversation
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
Update to Babel 7
* upgrade babel packages * v2.0.2--next.0 * remove corejs from transform-runtime
dreamwasp
approved these changes
Feb 5, 2021
@@ -0,0 +1,60 @@ | |||
# babel-preset-codecademy |
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.
👏👏👏👏👏
jakemhiller
approved these changes
Feb 9, 2021
codecaaron
approved these changes
Feb 9, 2021
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.
Might want to just check resolutions with the monolith with the lock file regen, but otherwise, this is awesome

📬Published Alpha Packages:[email protected] |
🚀 Styleguide deploy preview ready! |
jakemhiller
added a commit
that referenced
this pull request
Feb 13, 2021
* origin/main: (1238 commits) chore(release): publish add new tab true to external links (#1403) chore(release): publish fix(GlobalHeader): Simplify loading header chore(release): publish feat!: bumped ESLint packages to latest and added recommended & Jest linting chore(release): publish feat: adding 3 new icons for business reporting chore(release): publish fix: reduce column gaps on mobile for LP components chore(release): publish fix(AppHeaderDropdown): fix jumpiness of bold text when dropdown is opened (#1394) chore(release): publish feat: imported babel plugin (#1233) chore(release): publish fix(Toggle): remove aria-label chore(release): publish fix(GlobalHeader): Spacing fixes chore(release): publish fix: update font sizes within LP components at smaller than xs ...
jakemhiller
added a commit
that referenced
this pull request
Feb 13, 2021
* origin/main: (131 commits) chore(release): publish add new tab true to external links (#1403) chore(release): publish fix(GlobalHeader): Simplify loading header chore(release): publish feat!: bumped ESLint packages to latest and added recommended & Jest linting chore(release): publish feat: adding 3 new icons for business reporting chore(release): publish fix: reduce column gaps on mobile for LP components chore(release): publish fix(AppHeaderDropdown): fix jumpiness of bold text when dropdown is opened (#1394) chore(release): publish feat: imported babel plugin (#1233) chore(release): publish fix(Toggle): remove aria-label chore(release): publish fix(GlobalHeader): Spacing fixes chore(release): publish fix: update font sizes within LP components at smaller than xs ...
natalieweesh
pushed a commit
that referenced
this pull request
Oct 26, 2021
* Initial commit * Created babel-preset-codecademy * add repo to package.json * add module exports plugin * 1.1.0 * add yarn.lock file * Update to Babel 7-rc1 (#1) Update to Babel 7 * v2.0.0 * lock to babel 7 rc1 * v2.0.1 * Update babel to stable (#2) * upgrade babel packages * v2.0.2--next.0 * remove corejs from transform-runtime * update lockfile * change all dependencies to accept current versions * v2.2.0 * ensure decorators plugin comes before class-properties plugin * v2.2.1 * ensure class properties proposal is latest * v2.2.2 * Updated babel plugins; added ?. and ?? operators * 2.2.3 * Added ?. and ?? to list of required plugins * Removed Flow preset, lol * Also from index.js * 2.2.4 * Dropped most dependency versions back to roughly 7.0-level * Used beta package version * Removed beta tag * Add and specify corejs dep to fix warning. * Remove core-js upgrade and specify current version (2). * Bump package.json. * Bump lodash from 4.17.11 to 4.17.19 (#9) Bumps [lodash](https://github.com/lodash/lodash) from 4.17.11 to 4.17.19. - [Release notes](https://github.com/lodash/lodash/releases) - [Commits](lodash/lodash@4.17.11...4.17.19) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump mixin-deep from 1.3.1 to 1.3.2 (#10) Bumps [mixin-deep](https://github.com/jonschlinkert/mixin-deep) from 1.3.1 to 1.3.2. - [Release notes](https://github.com/jonschlinkert/mixin-deep/releases) - [Commits](jonschlinkert/mixin-deep@1.3.1...1.3.2) Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Create publish action * Add publishing instructions * add babel-plugin-react-anonymous-display-name (#11) * Babel updates (#13) * upgrade babel packages, cleanup a few rules * remove unused plugin * version bump to 2.4.0 * Babel runtime version lock (#14) * add absolute runtime path * 2.5.0 * add babel runtime peer dependency * Add options to enable/disable the previously added changes (helpers & runtime path) (#15) * add type option to enable/disable some babel options depending on the expected output * v3.0.0 * fixed variable * Remove now-unnecessary files * Touched up package.json * Recreated yarn.lock, blurgh * Deduplicated React * Bumped @types/enzyme * You're right, I did forget to run Prettier Co-authored-by: Jake Hiller <[email protected]> Co-authored-by: Neil Daftary <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
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.
Overview
Onboards our Babel preset to client-modules with
yarn lerna import
.There wasn't any particular reason to keep it separate from our ESLint, Webpack, etc. configs.
PR Checklist
[ ] Related to designs:yarnpkg/yarn#7807 explains the
yarn.lock
recreate and jhipster/generator-jhipster#12664 explains the enzyme version bump.