Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
darekkay committed Apr 5, 2022
1 parent 5138a69 commit 0fb65c4
Show file tree
Hide file tree
Showing 4 changed files with 1,443 additions and 1,478 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"mkdirp": "1.0.4"
},
"devDependencies": {
"@darekkay/scripts": "1.5.3"
"@darekkay/scripts": "1.6.0"
},
"engines": {
"node": ">=12.0.0"
Expand Down
2 changes: 1 addition & 1 deletion src/import/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const flatten = (bookmarks, folder, result) => {
};

const importBookmarks = (file, config) => {
const content = fs.readFileSync(file, "utf-8");
const content = fs.readFileSync(file, "utf8");
parse(content, (error, result) => {
if (error) {
logger.error(error);
Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const render = require("./render");
const { writeFile } = require("./utils");

const build = (files, config) => {
const template = fs.readFileSync(config.templateFilePath, "utf-8");
const template = fs.readFileSync(config.templateFilePath, "utf8");

let loadFailed = false;
const bookmarks = files
Expand Down
Loading

0 comments on commit 0fb65c4

Please sign in to comment.