Skip to content
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

gulp version bug with the babel register module require #2341

Closed
wants to merge 109 commits into from
Closed

gulp version bug with the babel register module require #2341

wants to merge 109 commits into from

Conversation

JoshK2
Copy link

@JoshK2 JoshK2 commented Oct 11, 2018

gulp do a require to babel register module and failed to load it:
Failed to load external module @babel/register
if you downgrade the version of gulp from 3.9.1 to 3.9.0 its working good.

przytrzask and others added 30 commits July 21, 2017 12:08
…#1441)

* fix dateTime Icon when format set to 24 H

* fix selectPlaceholder prop

* fix searchPlaceholder in Select component

*  add searchPlaceholder to Select component while onSearch is set

* provide onSearchPlaceHolder to Select component while onSearch is set

* provide onSearchPlaceHolder to Select component while onSearch is set

* provide onSearchPlaceHolder to Select component while onSearch is set
Changing the wrapper label of the Radiobutton component for a span tag to meet the WCAG requirement.
Upadated the snapshots of the radiobutton.

Signed-off-by: jlevesque <jlevesque2109@gmail.com>
* export PasswordInput component in index-common.js

Signed-off-by: Jonas Jensen <jonas.jensen@greenbird.com>

* export PasswordInput component in index.js

Signed-off-by: Jonas Jensen <jonas.jensen@greenbird.com>
* Issue #1436
Changing the wrapper label of the Radiobutton component for a span tag to meet the WCAG requirement.
Upadated the snapshots of the radiobutton.

Signed-off-by: jlevesque <jlevesque2109@gmail.com>

* Moved label tag to wrap the radiobutton, fixing weird clicking issues

Signed-off-by: jlevesque <jlevesque2109@gmail.com>
…ence (#1517)

Signed-off-by: Jonas Jensen <jonas.jensen@greenbird.com>
Column labels now allow for an optional tuple to define a column header.
The first item is just the column label (React node). The second item
allows for an options object. This only supports the `sortable` option
to disable sorting for some columns. If no options are passed the
default is still to rely on the `onSort` value to enable the sorting UI.
* Issue #1436
Changing the wrapper label of the Radiobutton component for a span tag to meet the WCAG requirement.
Upadated the snapshots of the radiobutton.

Signed-off-by: jlevesque <jlevesque2109@gmail.com>

* Moved label tag to wrap the radiobutton, fixing weird clicking issues

Signed-off-by: jlevesque <jlevesque2109@gmail.com>

* Added French suppport in messages

Signed-off-by: jlevesque <jlevesque2109@gmail.com>

* Add french support, fixed a typo in the import of fr-FR.js

Signed-off-by: jlevesque <jlevesque2109@gmail.com>
* Hide text behind select__control

* Prevent error from printing

Fix issue #1557

* Remove changes from other PR. oops.
…laces, added zoom property, added flag and onHover to series objects. (#1570)
* Fixed input border

* Fix for #1531 - double border on TextInput

* Backed out previous change - due to lint issue

* Added changes based on feedback
Fauricio Rojas Hernández and others added 19 commits February 5, 2018 11:01
* Removed prop duration from Toast component to avoid invalid html attributes on prop tranfer

* Increased test coverage
…1853)

* Header: fixed z-index to make sure body elements go behind the float

* Header: fixed z-index to make sure body elements go behind the float

* Header: fixed z-index to make sure body elements go behind the float

* Header: fixed z-index to make sure body elements go behind the float

* Header: fixed z-index to make sure body elements go behind the float
pass className to Drop

* Header: fixed z-index to make sure body elements go behind the float
pass className to Drop

* Header: fixed z-index to make sure body elements go behind the float
pass className to Drop

* Header: fixed z-index to make sure body elements go behind the float
pass className to Drop
…et component styling (#2003)

* Reorganized SaSS file contents to make it easier to exclude non-grommet component styling

* Re-arranged base styles
* Add Github Stale bot

* Update stale.yml
Thanks for your contribution!
* When the layer is used in a component that is "observer", and after receiving the new properties (componentDidUpdate), the exit event (keyboard) does not work

* Layer bugfix
)

* Issue 2109: TextInput - remove keyboard handlers when unmounting.

* v.1.11.0

* Added support for class properties in v1. (#2112)

* Make handler class property

* Update TextInput.js
Adding "defaultMessage" argument to the getMessage function so that the defaultMessage value is not always same as the key argument value which is passed to the getMessage function. 
Due to the absence of "defaultMessage" argument,  developers are forced to keep the value of key argument as what they want the defaultMessage to be shown. Devs want to name their keys in a unique manner and sometimes component specific however the current code restricts it as only key argument is present in the function.
…u drop down in (#2161)

If a developer wants to place a Menu within a floating panel (tooltip,etc) its very helpful to constrain the Menu's floating drop down to be rendered in the DOM of the floating parent. This makes life cycle much easier (Menu won't hang around after floating parent is dismissed) and it makes it easier to cause the menu to render within the parent.
#2108)

* Issue 2105: Provide infinite scrolling support for moreAbove in the table.

Signed-off-by: Robert M. Gary <robert.m.gary@hpe.com>

* Adjust spacing

* Add tests for infinite scrolling
gulp do a require to babel register module and failed to load it:
Failed to load external module @babel/register
if you downgrade the version of gulp from 3.9.1 to 3.9.0 its working good.
@JoshK2 JoshK2 changed the title Update gulp version gulp version bug with the babel register module require Oct 11, 2018
@coveralls
Copy link

Coverage Status

Coverage remained the same at 25.966% when pulling b39f2d5 on JoshK2:patch-1 into 8181f35 on grommet:master.

@@ -65,7 +65,7 @@
"del": "^3.0.0",
"eslint": "^4.7.2",
"grommet-toolbox": "^2.0.0",
"gulp": "^3.9.1",
"gulp": "^3.9.0",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this will install 3.9.1 right ? since we have the ^ there.

Copy link
Author

@JoshK2 JoshK2 Oct 11, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, but this version is failed to load the babel register module

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes I get it. but this PR does not fix this problem since it will install 3.9.1 still right ?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can you get me more details on how to reproduce this issue?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes, do this:

  1. clone the project
  2. in the terminal run "npm i"
  3. in the terminal run "npm run test"

its output "Failed to load external module @babel/register"
and when i downgrade to gulp version 3.9.0 its work good and output "Requiring external module babel-core/register"

@ShimiSun
Copy link
Member

Hi @JoshK2, thanks for the PR. will you be willing to address the conflicts?

@ShimiSun ShimiSun added the waiting Awaiting response to latest comments label Feb 24, 2019
@JoshK2
Copy link
Author

JoshK2 commented Feb 28, 2019

will you be willing to address the conflicts?

The solution that I think worked, seems to not working.
So I don't know how to solve the problem, and I think is not important because I update to version 1.13.0 to use the "hold" grommet and everything working.
You can close the pull request.

@ShimiSun ShimiSun closed this Feb 28, 2019
@ghost ghost removed the waiting Awaiting response to latest comments label Feb 28, 2019
@JoshK2 JoshK2 deleted the patch-1 branch February 28, 2019 15:57
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet