npm / cmd-shim

The cmd-shim used in npm
ISC License
76 stars 40 forks source link

Use strict-mode compatible octal literals #32

Closed skeggse closed 6 years ago

skeggse commented 6 years ago

If you're doing unsupported things like trying to bundle npm's CLI, and are using a bundler that assumes ES6 modules for all source files, then the deprecated octal literals used here are problematic. This PR replaces the deprecated form with the modern octal literal form.

skeggse commented 6 years ago

Duplicate of #29.