Skip to content

Commit

Permalink
chore: remove lodash.merge dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
joneff committed Nov 27, 2022
1 parent 4635da0 commit 02b7256
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
const fs = require('fs');
const path = require('path');
const glob = require('glob');
const merge = require('lodash.merge');
const merge = Object.assign;

const { parse } = require('./src/parse.js');
const { replacePathVariables } = require('./src/templated-path.js');
Expand Down
3 changes: 1 addition & 2 deletions package-lock.json

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

3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,7 @@
},
"dependencies": {
"@joneff/sass-import-resolver": "^1.0.0",
"glob": "^8.0.3",
"lodash.merge": "^4.6.2"
"glob": "^8.0.3"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
Expand Down

0 comments on commit 02b7256

Please sign in to comment.