Skip to content

Commit

Permalink
chore: remove es6-object-assign dependency (#152)
Browse files Browse the repository at this point in the history
No change to logic, this just removes a dependency because we target
node >= v4 (which already supports Object.assign).

Fixes #146
  • Loading branch information
nfischer authored Nov 29, 2018
1 parent fbe3b0a commit 18a56c2
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 8 deletions.
5 changes: 0 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@
"watch": "^1.0.2"
},
"dependencies": {
"es6-object-assign": "^1.0.3",
"minimist": "^1.2.0",
"shelljs": "^0.8.1"
},
Expand Down
2 changes: 0 additions & 2 deletions src/shx.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ import { CMD_BLACKLIST, EXIT_CODES, CONFIG_FILE } from './config';
import { printCmdRet } from './printCmdRet';
import path from 'path';
import fs from 'fs';
import objAssign from 'es6-object-assign';
objAssign.polyfill(); // modifies the global object

shell.help = help;

Expand Down

0 comments on commit 18a56c2

Please sign in to comment.