Skip to content
GitLab
Projects Groups Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in / Register
  • C create-react-app
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 1,547
    • Issues 1,547
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 417
    • Merge requests 417
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Packages and registries
    • Packages and registries
    • Package Registry
    • Infrastructure Registry
  • Monitor
    • Monitor
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • Meta
  • create-react-app
  • Issues
  • #6166
Closed
Open
Issue created Jan 10, 2019 by Administrator@rootContributor

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

Created by: 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?

Assignee
Assign to
Time tracking