react-dev-utils
Advanced tools
Comparing version
@@ -111,3 +111,3 @@ /** | ||
// from user code generated by WebPack. For more information see | ||
// https://github.com/facebookincubator/create-react-app/pull/1050 | ||
// https://github.com/facebook/create-react-app/pull/1050 | ||
message = message.replace( | ||
@@ -114,0 +114,0 @@ /^\s*at\s((?!webpack:).)*:\d+:\d+[\s)]*(\n|$)/gm, |
@@ -60,2 +60,4 @@ /** | ||
'/Applications/MacVim.app/Contents/MacOS/MacVim': 'mvim', | ||
'/Applications/GoLand.app/Contents/MacOS/goland': | ||
'/Applications/GoLand.app/Contents/MacOS/goland', | ||
}; | ||
@@ -76,2 +78,3 @@ | ||
'webstorm.sh': 'webstorm', | ||
'goland.sh': 'goland', | ||
}; | ||
@@ -98,2 +101,4 @@ | ||
'webstorm64.exe', | ||
'goland.exe', | ||
'goland64.exe', | ||
]; | ||
@@ -161,2 +166,4 @@ | ||
case 'webstorm64': | ||
case 'goland': | ||
case 'goland64': | ||
return addWorkspaceToArgumentsIfExists( | ||
@@ -163,0 +170,0 @@ ['--line', lineNumber, fileName], |
@@ -19,3 +19,3 @@ /** | ||
// file that will precache your site's local assets. | ||
// See https://github.com/facebookincubator/create-react-app/issues/2272#issuecomment-302832432 | ||
// See https://github.com/facebook/create-react-app/issues/2272#issuecomment-302832432 | ||
@@ -22,0 +22,0 @@ self.addEventListener('install', () => self.skipWaiting()); |
@@ -91,3 +91,3 @@ /** | ||
// just ignore it (thus ensuring the intended behavior, i.e. opening the system browser): | ||
// https://github.com/facebookincubator/create-react-app/pull/1690#issuecomment-283518768 | ||
// https://github.com/facebook/create-react-app/pull/1690#issuecomment-283518768 | ||
if (process.platform === 'darwin' && browser === 'open') { | ||
@@ -94,0 +94,0 @@ browser = undefined; |
{ | ||
"name": "react-dev-utils", | ||
"version": "6.0.0-next.096703ab", | ||
"version": "6.0.0-next.47d2d941", | ||
"description": "Webpack utilities used by Create React App", | ||
"repository": "facebookincubator/create-react-app", | ||
"repository": "facebook/create-react-app", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/facebookincubator/create-react-app/issues" | ||
"url": "https://github.com/facebook/create-react-app/issues" | ||
}, | ||
@@ -42,3 +42,3 @@ "engines": { | ||
"address": "1.0.3", | ||
"browserslist": "2.11.1", | ||
"browserslist": "2.11.3", | ||
"chalk": "2.3.0", | ||
@@ -55,3 +55,3 @@ "cross-spawn": "5.1.0", | ||
"pkg-up": "2.0.0", | ||
"react-error-overlay": "5.0.0-next.096703ab", | ||
"react-error-overlay": "5.0.0-next.47d2d941", | ||
"recursive-readdir": "2.2.1", | ||
@@ -64,3 +64,3 @@ "shell-quote": "1.6.1", | ||
"devDependencies": { | ||
"jest": "22.1.1" | ||
"jest": "22.1.2" | ||
}, | ||
@@ -67,0 +67,0 @@ "scripts": { |
@@ -40,3 +40,3 @@ /** | ||
} | ||
console.log('Read more here: http://bit.ly/2tRViJ9'); | ||
console.log('Read more here: http://bit.ly/CRA-build-minify'); | ||
} else { | ||
@@ -43,0 +43,0 @@ console.log((message || err) + '\n'); |
@@ -42,3 +42,3 @@ /** | ||
console.log(); | ||
console.log(` ${chalk.yellow('http://bit.ly/2vY88Kr')}`); | ||
console.log(` ${chalk.yellow('http://bit.ly/CRA-deploy')}`); | ||
console.log(); | ||
@@ -45,0 +45,0 @@ } |
# react-dev-utils | ||
This package includes some utilities used by [Create React App](https://github.com/facebookincubator/create-react-app).<br> | ||
This package includes some utilities used by [Create React App](https://github.com/facebook/create-react-app).<br> | ||
Please refer to its documentation: | ||
* [Getting Started](https://github.com/facebookincubator/create-react-app/blob/master/README.md#getting-started) – How to create a new app. | ||
* [User Guide](https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md) – How to develop apps bootstrapped with Create React App. | ||
* [Getting Started](https://github.com/facebook/create-react-app/blob/master/README.md#getting-started) – How to create a new app. | ||
* [User Guide](https://github.com/facebook/create-react-app/blob/master/packages/react-scripts/template/README.md) – How to develop apps bootstrapped with Create React App. | ||
## Usage in Create React App Projects | ||
These utilities come by default with [Create React App](https://github.com/facebookincubator/create-react-app), which includes it by default. **You don’t need to install it separately in Create React App projects.** | ||
These utilities come by default with [Create React App](https://github.com/facebook/create-react-app), which includes it by default. **You don’t need to install it separately in Create React App projects.** | ||
## Usage Outside of Create React App | ||
If you don’t use Create React App, or if you [ejected](https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md#npm-run-eject), you may keep using these utilities. Their development will be aligned with Create React App, so major versions of these utilities may come out relatively often. Feel free to fork or copy and paste them into your projects if you’d like to have more control over them, or feel free to use the old versions. Not all of them are React-specific, but we might make some of them more React-specific in the future. | ||
If you don’t use Create React App, or if you [ejected](https://github.com/facebook/create-react-app/blob/master/packages/react-scripts/template/README.md#npm-run-eject), you may keep using these utilities. Their development will be aligned with Create React App, so major versions of these utilities may come out relatively often. Feel free to fork or copy and paste them into your projects if you’d like to have more control over them, or feel free to use the old versions. Not all of them are React-specific, but we might make some of them more React-specific in the future. | ||
@@ -87,3 +87,3 @@ ### Entry Points | ||
We’re not sure why this isn't Webpack's default behavior.<br> | ||
See [#186](https://github.com/facebookincubator/create-react-app/issues/186) for details. | ||
See [#186](https://github.com/facebook/create-react-app/issues/186) for details. | ||
@@ -102,3 +102,3 @@ ```js | ||
// makes the discovery automatic so you don't have to restart. | ||
// See https://github.com/facebookincubator/create-react-app/issues/186 | ||
// See https://github.com/facebook/create-react-app/issues/186 | ||
new WatchMissingNodeModulesPlugin(path.resolve('node_modules')) | ||
@@ -105,0 +105,0 @@ ], |
@@ -10,3 +10,3 @@ /** | ||
// We’re not sure why this isn't Webpack's default behavior. | ||
// See https://github.com/facebookincubator/create-react-app/issues/186. | ||
// See https://github.com/facebook/create-react-app/issues/186. | ||
@@ -13,0 +13,0 @@ 'use strict'; |
@@ -44,3 +44,3 @@ /** | ||
// change). | ||
// See https://github.com/facebookincubator/create-react-app/issues/3096 | ||
// See https://github.com/facebook/create-react-app/issues/3096 | ||
var hadRuntimeError = false; | ||
@@ -47,0 +47,0 @@ ErrorOverlay.startReportingRuntimeErrors({ |
No repository
Supply chain riskPackage does not have a linked source code repository. Without this field, a package will have no reference to the location of the source code use to generate the package.
Found 1 instance in 1 package
URL strings
Supply chain riskPackage contains fragments of external URLs or IP addresses, which the package may be accessing at runtime.
Found 1 instance in 1 package
No repository
Supply chain riskPackage does not have a linked source code repository. Without this field, a package will have no reference to the location of the source code use to generate the package.
Found 1 instance in 1 package
URL strings
Supply chain riskPackage contains fragments of external URLs or IP addresses, which the package may be accessing at runtime.
Found 1 instance in 1 package
81950
0.11%2035
0.35%+ Added
+ Added
- Removed
- Removed
Updated