React-native-image-picker: App restarts after taking a picture. Google Pixel Android 7.1.1

Created on 3 Apr 2017  ·  33Comments  ·  Source: react-native-image-picker/react-native-image-picker

Works fine on Moto 3, Lenovo K5 Plus running Android 5.1.1.

However, after taking a photo on Google Pixel 7.1.1, the app restarts. Choosing image from photo library works fine though.
My Options:

var options = {
  title: 'Select meal image',
  storageOptions: {
    skipBackup: true,
    path: 'images'
  },
  quality: 0.6,
  mediaType: 'photo',
  maxHeight: 2000,
  maxWidth: 1000
};
    getBreakfastImage() {
        this.setState({
            breakfastLogged: true,
        });
        ImagePicker.showImagePicker(options, (response) => {
            if (response.didCancel) {
            }
            else if (response.error) {
            }
            else if (response.customButton) {
            }
            else {
                let source = { uri: response.uri };
                this.setState({
                    breakfastImageCount: this.state.breakfastImageCount+1,
                    imageCountStatic: this.state.imageCountStatic+1
                });
                breakfastImages.push({
                    key: this.state.breakfastImageCount,
                    imageSource: source,
                    imageID: null
                });
                breakfastImages64.push(
                    response.data
                );
                this.setState({ reRender: Math.random() });
            }
        });
    }
stale

Most helpful comment

@haitaoli I have the same issue, running Android Marshmallow on Moto G2.
App restarts with splash screen. Since the components are reinitialised, I lose the captured images reference, the image remains saved in phone gallery applications.

Works fine when choosing image from gallery.

"react": "16.0.0-alpha.6",
"react-native": "0.43.3",
"react-native-image-picker": "^0.26.3",

Went though other similar issues, couldn't find anything that helps.

All 33 comments

CAM_ActivityCloser: WARNING: Activity was artificially finished: CameraActivityController: Intent completed with a valid result. Closing activity.

@rexjrs do you lose the image when activity restarts?

@rexjrs I've got the same issue as yours, when I take a photo, sometimes (not always), the app is restarting. However, I don't have this issue when I choose a photo from library.

Did you manage to fix this?

@haitaoli, as for me, yep.

I'm working with a Nexus 5X, Android 7.1.2

@Blapi does it always happen if you rotate the phone when taking the picture?

@haitaoli, no, not always. As I said it's only happening just sometimes, and I was not able to reproduce this issue after 20 tries..

@haitaoli I have the same issue, running Android Marshmallow on Moto G2.
App restarts with splash screen. Since the components are reinitialised, I lose the captured images reference, the image remains saved in phone gallery applications.

Works fine when choosing image from gallery.

"react": "16.0.0-alpha.6",
"react-native": "0.43.3",
"react-native-image-picker": "^0.26.3",

Went though other similar issues, couldn't find anything that helps.

I experience the exact same issue, random crashes when taking a picture. Choosing from gallery works fine.

Device: Samsung Galaxy S8 (Android 7.0) on Debug as well as Release

"react-native": "0.43.3",
"react-native-image-picker": "^0.26.3"

EDIT: It seems to always happen when there is an orientation change. But it also randomly happens when there is no orientation change.

I have been facing the same issue for long time.
"react-native-image-picker": "^0.24.1",
"react-native": "^0.34.1",
Please help.

It also happens in HUAWEI MT7-CL00 ,Always!

I get the same problem too, in my case, when I take a photo and delay to confirm after about 8 seconds or later, the confirm button did not work or the app is aborting; any solution to fix it?

hi @spidergears , @sudhanshu6247

could u solve that Issue because am also facing same issue.i searched in google all are telling that downgrade the react-native-image-picker plugin to v0.22.9. for me its not working.can u try if it works for u

I still not solved this problem but I found it's just happened on Android
7.0 and higher; And when App restarted the picture I took storage at
Pictures fold otherwise it will storage at DCIM fold, so I guess that's the
real problem, but I don't konw how to resolve it.

2017-07-12 14:21 GMT+08:00 gopikrishna notifications@github.com:

hi @spidergears https://github.com/spidergears ,

could u solve that Issue because am also facing same issue.i searched in
google all are telling that downgrade the react-native-image-picker plugin
to v0.22.9. for me its not working.can u try if it works for u


You are receiving this because you commented.
Reply to this email directly, view it on GitHub
https://github.com/react-community/react-native-image-picker/issues/537#issuecomment-314666056,
or mute the thread
https://github.com/notifications/unsubscribe-auth/AQ-2DJz59NAeD5UInqhXHamVBnFwmQQ9ks5sNGXxgaJpZM4MxSrX
.

Getting the same issue here -- choosing photo from library works fine, but taking a new photo immediately restarts the app.

Device: Huawei P9 Lite.
RN: 0.44.2
react-native-image-picker: 0.26.3

+1

Same here ...

RN: 47.2
Lib: 0.26.6

How can it be a duplicate of 732 when this one is 537?!

@Blapi are you trolling me man 😆 It's just the same problem, that's all I'm saying.

Restart looks like a crash, anyone can post the crash stacktrace ?
If you run into NullpointerException, please replace dep with this

npm install gengjiawen/react-native-image-picker#bugfix/android_photo_crash -S

Possible Solution:

There is a high chance that this is not a React Native issue, rather that of your phone(Only Android) settings. Try this:

Go to Settings > Developer options.
Scroll Down till you find "Don't keep activities". Usually it should be under "App" heading.
Disable it IF it's enabled. (If its disabled, then this solution is not for you)
Try running the file upload now. It should work.
** Description:

Don't keep activities - destroys every activity as soon as the user leaves it.
React native image picker opens system's file system using React-native-fs.
At this point your RN app becomes a background app, which is destroyed by the setting in step 3.
This is the case with all apps that use native file systems. Thats the reason some apps like facebook, messanger, whatsapp etc have their own native filesystem.
Happy coding

facing same issue ...

I was facing the same issue on some older Android phones, but only in development mode. Have you guys checked if the issue remains in production?

Good luck!  👍🏻

@afonsodelgado yes it's in production also. New devices of Mi and Huwai also showing the same issue.

Hey guys, any solution for this?

I'm facing the same problem on my Moto G2 (production and development)

"react-native": "0.49.3"
"react-native-image-picker": "0.26.7"

try on latest version of react

On Wed, May 23, 2018 at 7:48 PM, antonio94js notifications@github.com
wrote:

Hey guys, any solution for this?

I'm facing the same problem on my Moto G2 (production and development)

"react-native": "0.49.3"
"react-native-image-picker": "0.26.7"


You are receiving this because you commented.
Reply to this email directly, view it on GitHub
https://github.com/react-community/react-native-image-picker/issues/537#issuecomment-391364249,
or mute the thread
https://github.com/notifications/unsubscribe-auth/ALMqgq_zMZPgT_3mnyj5I6nE1DkiZGUjks5t1W-ugaJpZM4MxSrX
.

try on latest version of react and react native

On Thu, May 24, 2018 at 11:25 AM, Hk Xicor hkxicor@gmail.com wrote:

try on latest version of react

On Wed, May 23, 2018 at 7:48 PM, antonio94js notifications@github.com
wrote:

Hey guys, any solution for this?

I'm facing the same problem on my Moto G2 (production and development)

"react-native": "0.49.3"
"react-native-image-picker": "0.26.7"


You are receiving this because you commented.
Reply to this email directly, view it on GitHub
https://github.com/react-community/react-native-image-picker/issues/537#issuecomment-391364249,
or mute the thread
https://github.com/notifications/unsubscribe-auth/ALMqgq_zMZPgT_3mnyj5I6nE1DkiZGUjks5t1W-ugaJpZM4MxSrX
.

can you ensure if you’re calling the imagepicker function by arrow function?

eg:
pickImage = () => {
Your code
}

....
...
onPress={() => this.pickImage()}
/>

Here it fails to return back to your app if you write
onPress={this.pickImage()}

Hence, arrow function ()=> is mandatory

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. You may also mark this issue as a "discussion" and I will leave this open.

Closing this issue after a prolonged period of inactivity. Fell free to reopen this issue, if this still affecting you.

This issue is still there. I am using a OnePlus 6T.

"react-native": "0.58.3"
"react-native-image-picker": "^0.28.0"

The issue got fixed when I changed the version in the package.json from _"react-native-image-picker": "^0.28.0"_ to _"react-native-image-picker": "0.28.0"_ and did an _npm install_.

@AnurajDev But what is the fixed version? Can you check your package lock file and post back?

Thank you

@SudoPlz Changes were inside the _fsevents_ of package-lock.json.

The thing is the issue was not there while I was testing the app in OnePlus 6T previously. It popped up very recently. So I rolled back to the 0.28.0 version.

Previous package-lock.json
"fsevents": { "version": "1.2.7", "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.7.tgz", "integrity": "sha512-Pxm6sI2MeBD7RdD12RYsqaP0nMiwx8eZBXCa6z2L+mRHm2DYrOYwihmhjpkdjUHwQhslWQjRpEgNq4XvBmaAuw==", "optional": true, "requires": { "nan": "^2.9.2", "node-pre-gyp": "^0.10.0" }, "dependencies": { "abbrev": { "version": "1.1.1", "bundled": true, "optional": true }, "ansi-regex": { "version": "2.1.1", "bundled": true }, "aproba": { "version": "1.2.0", "bundled": true, "optional": true }, "are-we-there-yet": { "version": "1.1.5", "bundled": true, "optional": true, "requires": { "delegates": "^1.0.0", "readable-stream": "^2.0.6" } }, "balanced-match": { "version": "1.0.0", "bundled": true }, "brace-expansion": { "version": "1.1.11", "bundled": true, "requires": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }, "chownr": { "version": "1.1.1", "bundled": true, "optional": true }, "code-point-at": { "version": "1.1.0", "bundled": true }, "concat-map": { "version": "0.0.1", "bundled": true }, "console-control-strings": { "version": "1.1.0", "bundled": true }, "core-util-is": { "version": "1.0.2", "bundled": true, "optional": true }, "debug": { "version": "2.6.9", "bundled": true, "optional": true, "requires": { "ms": "2.0.0" } }, "deep-extend": { "version": "0.6.0", "bundled": true, "optional": true }, "delegates": { "version": "1.0.0", "bundled": true, "optional": true }, "detect-libc": { "version": "1.0.3", "bundled": true, "optional": true }, "fs-minipass": { "version": "1.2.5", "bundled": true, "optional": true, "requires": { "minipass": "^2.2.1" } }, "fs.realpath": { "version": "1.0.0", "bundled": true, "optional": true }, "gauge": { "version": "2.7.4", "bundled": true, "optional": true, "requires": { "aproba": "^1.0.3", "console-control-strings": "^1.0.0", "has-unicode": "^2.0.0", "object-assign": "^4.1.0", "signal-exit": "^3.0.0", "string-width": "^1.0.1", "strip-ansi": "^3.0.1", "wide-align": "^1.1.0" } }, "glob": { "version": "7.1.3", "bundled": true, "optional": true, "requires": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^3.0.4", "once": "^1.3.0", "path-is-absolute": "^1.0.0" } }, "has-unicode": { "version": "2.0.1", "bundled": true, "optional": true }, "iconv-lite": { "version": "0.4.24", "bundled": true, "optional": true, "requires": { "safer-buffer": ">= 2.1.2 < 3" } }, "ignore-walk": { "version": "3.0.1", "bundled": true, "optional": true, "requires": { "minimatch": "^3.0.4" } }, "inflight": { "version": "1.0.6", "bundled": true, "optional": true, "requires": { "once": "^1.3.0", "wrappy": "1" } }, "inherits": { "version": "2.0.3", "bundled": true }, "ini": { "version": "1.3.5", "bundled": true, "optional": true }, "is-fullwidth-code-point": { "version": "1.0.0", "bundled": true, "requires": { "number-is-nan": "^1.0.0" } }, "isarray": { "version": "1.0.0", "bundled": true, "optional": true }, "minimatch": { "version": "3.0.4", "bundled": true, "requires": { "brace-expansion": "^1.1.7" } }, "minimist": { "version": "0.0.8", "bundled": true }, "minipass": { "version": "2.3.5", "bundled": true, "requires": { "safe-buffer": "^5.1.2", "yallist": "^3.0.0" } }, "minizlib": { "version": "1.2.1", "bundled": true, "optional": true, "requires": { "minipass": "^2.2.1" } }, "mkdirp": { "version": "0.5.1", "bundled": true, "requires": { "minimist": "0.0.8" } }, "ms": { "version": "2.0.0", "bundled": true, "optional": true }, "needle": { "version": "2.2.4", "bundled": true, "optional": true, "requires": { "debug": "^2.1.2", "iconv-lite": "^0.4.4", "sax": "^1.2.4" } }, "node-pre-gyp": { "version": "0.10.3", "bundled": true, "optional": true, "requires": { "detect-libc": "^1.0.2", "mkdirp": "^0.5.1", "needle": "^2.2.1", "nopt": "^4.0.1", "npm-packlist": "^1.1.6", "npmlog": "^4.0.2", "rc": "^1.2.7", "rimraf": "^2.6.1", "semver": "^5.3.0", "tar": "^4" } }, "nopt": { "version": "4.0.1", "bundled": true, "optional": true, "requires": { "abbrev": "1", "osenv": "^0.1.4" } }, "npm-bundled": { "version": "1.0.5", "bundled": true, "optional": true }, "npm-packlist": { "version": "1.2.0", "bundled": true, "optional": true, "requires": { "ignore-walk": "^3.0.1", "npm-bundled": "^1.0.1" } }, "npmlog": { "version": "4.1.2", "bundled": true, "optional": true, "requires": { "are-we-there-yet": "~1.1.2", "console-control-strings": "~1.1.0", "gauge": "~2.7.3", "set-blocking": "~2.0.0" } }, "number-is-nan": { "version": "1.0.1", "bundled": true }, "object-assign": { "version": "4.1.1", "bundled": true, "optional": true }, "once": { "version": "1.4.0", "bundled": true, "requires": { "wrappy": "1" } }, "os-homedir": { "version": "1.0.2", "bundled": true, "optional": true }, "os-tmpdir": { "version": "1.0.2", "bundled": true, "optional": true }, "osenv": { "version": "0.1.5", "bundled": true, "optional": true, "requires": { "os-homedir": "^1.0.0", "os-tmpdir": "^1.0.0" } }, "path-is-absolute": { "version": "1.0.1", "bundled": true, "optional": true }, "process-nextick-args": { "version": "2.0.0", "bundled": true, "optional": true }, "rc": { "version": "1.2.8", "bundled": true, "optional": true, "requires": { "deep-extend": "^0.6.0", "ini": "~1.3.0", "minimist": "^1.2.0", "strip-json-comments": "~2.0.1" }, "dependencies": { "minimist": { "version": "1.2.0", "bundled": true, "optional": true } } }, "readable-stream": { "version": "2.3.6", "bundled": true, "optional": true, "requires": { "core-util-is": "~1.0.0", "inherits": "~2.0.3", "isarray": "~1.0.0", "process-nextick-args": "~2.0.0", "safe-buffer": "~5.1.1", "string_decoder": "~1.1.1", "util-deprecate": "~1.0.1" } }, "rimraf": { "version": "2.6.3", "bundled": true, "optional": true, "requires": { "glob": "^7.1.3" } }, "safe-buffer": { "version": "5.1.2", "bundled": true }, "safer-buffer": { "version": "2.1.2", "bundled": true, "optional": true }, "sax": { "version": "1.2.4", "bundled": true, "optional": true }, "semver": { "version": "5.6.0", "bundled": true, "optional": true }, "set-blocking": { "version": "2.0.0", "bundled": true, "optional": true }, "signal-exit": { "version": "3.0.2", "bundled": true, "optional": true }, "string-width": { "version": "1.0.2", "bundled": true, "requires": { "code-point-at": "^1.0.0", "is-fullwidth-code-point": "^1.0.0", "strip-ansi": "^3.0.0" } }, "string_decoder": { "version": "1.1.1", "bundled": true, "optional": true, "requires": { "safe-buffer": "~5.1.0" } }, "strip-ansi": { "version": "3.0.1", "bundled": true, "requires": { "ansi-regex": "^2.0.0" } }, "strip-json-comments": { "version": "2.0.1", "bundled": true, "optional": true }, "tar": { "version": "4.4.8", "bundled": true, "optional": true, "requires": { "chownr": "^1.1.1", "fs-minipass": "^1.2.5", "minipass": "^2.3.4", "minizlib": "^1.1.1", "mkdirp": "^0.5.0", "safe-buffer": "^5.1.2", "yallist": "^3.0.2" } }, "util-deprecate": { "version": "1.0.2", "bundled": true, "optional": true }, "wide-align": { "version": "1.1.3", "bundled": true, "optional": true, "requires": { "string-width": "^1.0.2 || 2" } }, "wrappy": { "version": "1.0.2", "bundled": true }, "yallist": { "version": "3.0.3", "bundled": true } } },

Current package-lock.json

"fsevents": { "version": "1.2.7", "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.7.tgz", "integrity": "sha512-Pxm6sI2MeBD7RdD12RYsqaP0nMiwx8eZBXCa6z2L+mRHm2DYrOYwihmhjpkdjUHwQhslWQjRpEgNq4XvBmaAuw==", "optional": true, "requires": { "nan": "^2.9.2", "node-pre-gyp": "^0.10.0" }, "dependencies": { "abbrev": { "version": "1.1.1", "bundled": true, "optional": true }, "ansi-regex": { "version": "2.1.1", "bundled": true }, "aproba": { "version": "1.2.0", "bundled": true, "optional": true }, "are-we-there-yet": { "version": "1.1.5", "bundled": true, "optional": true, "requires": { "delegates": "^1.0.0", "readable-stream": "^2.0.6" } }, "balanced-match": { "version": "1.0.0", "bundled": true, "optional": true }, "brace-expansion": { "version": "1.1.11", "bundled": true, "optional": true, "requires": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }, "chownr": { "version": "1.1.1", "bundled": true, "optional": true }, "code-point-at": { "version": "1.1.0", "bundled": true, "optional": true }, "concat-map": { "version": "0.0.1", "bundled": true, "optional": true }, "console-control-strings": { "version": "1.1.0", "bundled": true, "optional": true }, "core-util-is": { "version": "1.0.2", "bundled": true, "optional": true }, "debug": { "version": "2.6.9", "bundled": true, "optional": true, "requires": { "ms": "2.0.0" } }, "deep-extend": { "version": "0.6.0", "bundled": true, "optional": true }, "delegates": { "version": "1.0.0", "bundled": true, "optional": true }, "detect-libc": { "version": "1.0.3", "bundled": true, "optional": true }, "fs-minipass": { "version": "1.2.5", "bundled": true, "optional": true, "requires": { "minipass": "^2.2.1" } }, "fs.realpath": { "version": "1.0.0", "bundled": true, "optional": true }, "gauge": { "version": "2.7.4", "bundled": true, "optional": true, "requires": { "aproba": "^1.0.3", "console-control-strings": "^1.0.0", "has-unicode": "^2.0.0", "object-assign": "^4.1.0", "signal-exit": "^3.0.0", "string-width": "^1.0.1", "strip-ansi": "^3.0.1", "wide-align": "^1.1.0" } }, "glob": { "version": "7.1.3", "bundled": true, "optional": true, "requires": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^3.0.4", "once": "^1.3.0", "path-is-absolute": "^1.0.0" } }, "has-unicode": { "version": "2.0.1", "bundled": true, "optional": true }, "iconv-lite": { "version": "0.4.24", "bundled": true, "optional": true, "requires": { "safer-buffer": ">= 2.1.2 < 3" } }, "ignore-walk": { "version": "3.0.1", "bundled": true, "optional": true, "requires": { "minimatch": "^3.0.4" } }, "inflight": { "version": "1.0.6", "bundled": true, "optional": true, "requires": { "once": "^1.3.0", "wrappy": "1" } }, "inherits": { "version": "2.0.3", "bundled": true, "optional": true }, "ini": { "version": "1.3.5", "bundled": true, "optional": true }, "is-fullwidth-code-point": { "version": "1.0.0", "bundled": true, "optional": true, "requires": { "number-is-nan": "^1.0.0" } }, "isarray": { "version": "1.0.0", "bundled": true, "optional": true }, "minimatch": { "version": "3.0.4", "bundled": true, "optional": true, "requires": { "brace-expansion": "^1.1.7" } }, "minimist": { "version": "0.0.8", "bundled": true, "optional": true }, "minipass": { "version": "2.3.5", "bundled": true, "optional": true, "requires": { "safe-buffer": "^5.1.2", "yallist": "^3.0.0" } }, "minizlib": { "version": "1.2.1", "bundled": true, "optional": true, "requires": { "minipass": "^2.2.1" } }, "mkdirp": { "version": "0.5.1", "bundled": true, "optional": true, "requires": { "minimist": "0.0.8" } }, "ms": { "version": "2.0.0", "bundled": true, "optional": true }, "needle": { "version": "2.2.4", "bundled": true, "optional": true, "requires": { "debug": "^2.1.2", "iconv-lite": "^0.4.4", "sax": "^1.2.4" } }, "node-pre-gyp": { "version": "0.10.3", "bundled": true, "optional": true, "requires": { "detect-libc": "^1.0.2", "mkdirp": "^0.5.1", "needle": "^2.2.1", "nopt": "^4.0.1", "npm-packlist": "^1.1.6", "npmlog": "^4.0.2", "rc": "^1.2.7", "rimraf": "^2.6.1", "semver": "^5.3.0", "tar": "^4" } }, "nopt": { "version": "4.0.1", "bundled": true, "optional": true, "requires": { "abbrev": "1", "osenv": "^0.1.4" } }, "npm-bundled": { "version": "1.0.5", "bundled": true, "optional": true }, "npm-packlist": { "version": "1.2.0", "bundled": true, "optional": true, "requires": { "ignore-walk": "^3.0.1", "npm-bundled": "^1.0.1" } }, "npmlog": { "version": "4.1.2", "bundled": true, "optional": true, "requires": { "are-we-there-yet": "~1.1.2", "console-control-strings": "~1.1.0", "gauge": "~2.7.3", "set-blocking": "~2.0.0" } }, "number-is-nan": { "version": "1.0.1", "bundled": true, "optional": true }, "object-assign": { "version": "4.1.1", "bundled": true, "optional": true }, "once": { "version": "1.4.0", "bundled": true, "optional": true, "requires": { "wrappy": "1" } }, "os-homedir": { "version": "1.0.2", "bundled": true, "optional": true }, "os-tmpdir": { "version": "1.0.2", "bundled": true, "optional": true }, "osenv": { "version": "0.1.5", "bundled": true, "optional": true, "requires": { "os-homedir": "^1.0.0", "os-tmpdir": "^1.0.0" } }, "path-is-absolute": { "version": "1.0.1", "bundled": true, "optional": true }, "process-nextick-args": { "version": "2.0.0", "bundled": true, "optional": true }, "rc": { "version": "1.2.8", "bundled": true, "optional": true, "requires": { "deep-extend": "^0.6.0", "ini": "~1.3.0", "minimist": "^1.2.0", "strip-json-comments": "~2.0.1" }, "dependencies": { "minimist": { "version": "1.2.0", "bundled": true, "optional": true } } }, "readable-stream": { "version": "2.3.6", "bundled": true, "optional": true, "requires": { "core-util-is": "~1.0.0", "inherits": "~2.0.3", "isarray": "~1.0.0", "process-nextick-args": "~2.0.0", "safe-buffer": "~5.1.1", "string_decoder": "~1.1.1", "util-deprecate": "~1.0.1" } }, "rimraf": { "version": "2.6.3", "bundled": true, "optional": true, "requires": { "glob": "^7.1.3" } }, "safe-buffer": { "version": "5.1.2", "bundled": true }, "safer-buffer": { "version": "2.1.2", "bundled": true, "optional": true }, "sax": { "version": "1.2.4", "bundled": true, "optional": true }, "semver": { "version": "5.6.0", "bundled": true, "optional": true }, "set-blocking": { "version": "2.0.0", "bundled": true, "optional": true }, "signal-exit": { "version": "3.0.2", "bundled": true, "optional": true }, "string-width": { "version": "1.0.2", "bundled": true, "optional": true, "requires": { "code-point-at": "^1.0.0", "is-fullwidth-code-point": "^1.0.0", "strip-ansi": "^3.0.0" } }, "string_decoder": { "version": "1.1.1", "bundled": true, "optional": true, "requires": { "safe-buffer": "~5.1.0" } }, "strip-ansi": { "version": "3.0.1", "bundled": true, "requires": { "ansi-regex": "^2.0.0" } }, "strip-json-comments": { "version": "2.0.1", "bundled": true, "optional": true }, "tar": { "version": "4.4.8", "bundled": true, "optional": true, "requires": { "chownr": "^1.1.1", "fs-minipass": "^1.2.5", "minipass": "^2.3.4", "minizlib": "^1.1.1", "mkdirp": "^0.5.0", "safe-buffer": "^5.1.2", "yallist": "^3.0.2" } }, "util-deprecate": { "version": "1.0.2", "bundled": true, "optional": true }, "wide-align": { "version": "1.1.3", "bundled": true, "optional": true, "requires": { "string-width": "^1.0.2 || 2" } }, "wrappy": { "version": "1.0.2", "bundled": true }, "yallist": { "version": "3.0.3", "bundled": true } } },

Was this page helpful?
0 / 5 - 0 ratings