Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,16 @@ root = true
[*]
charset = utf-8
end_of_line = lf
indent_size = 2
indent_style = space
indent_size = 4
indent_style = tab
insert_final_newline = false
trim_trailing_whitespace = true
tab_width = 2
tab_width = 4

[*.js]
max_line_length = 120

[{*.yml, *.yaml}]
indent_size = 2
indent_style = space
tab_width = 2
4 changes: 0 additions & 4 deletions .eslintignore

This file was deleted.

61 changes: 0 additions & 61 deletions .eslintrc.json

This file was deleted.

1 change: 0 additions & 1 deletion .mailmap

This file was deleted.

1 change: 1 addition & 0 deletions .node-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
18.20.2
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20.1.0
18.20.2
Empty file removed .prettierignore
Empty file.
25 changes: 11 additions & 14 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
{
"arrowParens": "always",
"bracketSpacing": true,
"endOfLine": "lf",
"htmlWhitespaceSensitivity": "strict",
"jsxBracketSameLine": false,
"jsxSingleQuote": false,
"printWidth": 120,
"quoteProps": "consistent",
"semi": true,
"singleQuote": false,
"tabWidth": 2,
"trailingComma": "all",
"useTabs": false
}
"arrowParens": "always",
"bracketSpacing": true,
"endOfLine": "lf",
"printWidth": 120,
"quoteProps": "consistent",
"semi": true,
"singleQuote": false,
"tabWidth": 4,
"trailingComma": "all",
"useTabs": true
}
23 changes: 0 additions & 23 deletions .remarkrc

This file was deleted.

2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1 +1 @@
nodejs 20.5.0
nodejs 18.20.2
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ language: node_js
before_install:
- "npm install npm -g"
node_js:
- "14.15.1"
- "18.20.2"
npm:
- "6.14.8"
- "10.5.0"
env:
- TEST_SUITE=test
script:
Expand Down
34 changes: 27 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,43 +2,63 @@

---

## [1.2.0]

### Requirements

- Minimal required Node.js version is now `18.20.2`.

---

## [1.1.1] - 2023-08-14

### Added

- `hashMulti` - Get hash of multiple files.

### Changed

- `writeJSON` renamed to `writeJson`.

---

## [1.1.0] - 2023-07-25

### Added

- `getLinkStatus` - Get file status unless `path` refers to a symbolic link.
- `getLinkStatus` - Get file status unless `path` refers to a symbolic link.

### Dependencies

- Removed `@await-of/of` dependency.
- Removed `@await-of/of` dependency.

### Requirements

- Minimal required Node.js version is now `16.17.0`.
- Minimal required Node.js version is now `16.17.0`.

- Removed `browser` module support.
- Removed `browser` module support.

---

## [1.0.2] - 2023-05-12

### Changed

- `dirIsEmpty` now returns throw error when path is not a directory or is not readable.
- `dirIsEmpty` now returns throw error when path is not a directory or is not readable.

---

## [1.0.1] - 2023-04-24

### Added

- Added `writeFileTail` function to write strin to the end of a file. Extremely useful for logging.
- Added `writeFileTail` function to write string to the end of a file. Extremely useful for logging.

---

## [1.0.0] - 2023-04-20

- Initial release 🍾🥂
- Initial release 🍾🥂

---

Expand Down
Loading
Loading