Skip to content

react-script crashing because old "pnp-webpack-plugin" #6166

Closed
@nicewaytodoit

Description

@nicewaytodoit

Windows 10
react-script 2.1.3


Running webserver will crush in yarn because currently used version of pnp-webpack-plugin is 1.1.0 has issue in line:

68: } else if (!issuer.startsWith(/)) {

(so basically for windows it says C:/ starts with '/' = false > then it is true and throw error.)

This is fixed in pnp-webpack-plugin": "1.2.1"
in new version that line is replaced with:

} else if (!path.isAbsolute(issuer)) {

Now: react-script-2.1.3 that is released 5 days ago is referencing pnp-webpack-plugin is 1.1.0
but
3 days ago someone has committed the change into master branch, so, now version "2.1.3" in github master is referencing pnp-webpack-plugin": "1.2.1" and bunch of other new packages.

Could you please increase version of react-script to 2.1.4 and publish new npm package?

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions