extra-filesystem 0.3.14 → 0.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +10 -10
  2. package/CHANGELOG.md +0 -221
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "extra-filesystem",
3
- "version": "0.3.14",
3
+ "version": "0.4.0",
4
4
  "description": "",
5
5
  "keywords": [],
6
6
  "files": [
@@ -11,6 +11,9 @@
11
11
  "repository": "git@github.com:BlackGlory/extra-filesystem.git",
12
12
  "author": "BlackGlory <woshenmedoubuzhidao@blackglory.me>",
13
13
  "license": "MIT",
14
+ "engines": {
15
+ "node": ">=16"
16
+ },
14
17
  "scripts": {
15
18
  "lint": "eslint --ext .js,.jsx,.ts,.tsx --quiet src",
16
19
  "test": "jest --runInBand --config jest.config.js",
@@ -27,9 +30,6 @@
27
30
  "build:es2018:patch": "tscpaths -p tsconfig.build.json -s ./src -o ./lib/es2018",
28
31
  "release": "standard-version"
29
32
  },
30
- "engines": {
31
- "node": ">= 14"
32
- },
33
33
  "husky": {
34
34
  "hooks": {
35
35
  "pre-commit": "run-s lint build test",
@@ -44,24 +44,24 @@
44
44
  "@types/jest": "^27.0.3",
45
45
  "@types/node": "14",
46
46
  "@types/tmp": "^0.2.2",
47
- "@typescript-eslint/eslint-plugin": "^5.6.0",
48
- "@typescript-eslint/parser": "^5.6.0",
47
+ "@typescript-eslint/eslint-plugin": "^5.7.0",
48
+ "@typescript-eslint/parser": "^5.7.0",
49
49
  "eslint": "^8.4.1",
50
50
  "husky": "^4.3.0",
51
51
  "iterable-operator": "^0.14.4",
52
- "jest": "^27.4.4",
52
+ "jest": "^27.4.5",
53
53
  "jest-extended": "^1.2.0",
54
54
  "npm-run-all": "^4.1.5",
55
55
  "return-style": "^0.12.5",
56
56
  "rimraf": "^3.0.2",
57
57
  "standard-version": "^9.3.2",
58
- "ts-jest": "^27.1.1",
58
+ "ts-jest": "^27.1.2",
59
59
  "tscpaths": "^0.0.9",
60
- "typescript": "^4.5.3"
60
+ "typescript": "^4.5.4"
61
61
  },
62
62
  "dependencies": {
63
63
  "@blackglory/pass": "^0.1.0",
64
- "extra-promise": "^0.19.4",
64
+ "extra-promise": "^0.20.0",
65
65
  "fs-extra": "^10.0.0",
66
66
  "tmp-promise": "^3.0.3"
67
67
  }
package/CHANGELOG.md DELETED
@@ -1,221 +0,0 @@
1
- # Changelog
2
-
3
- All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
-
5
- ### [0.3.14](https://github.com/BlackGlory/extra-filesystem/compare/v0.3.13...v0.3.14) (2021-12-12)
6
-
7
- ### [0.3.13](https://github.com/BlackGlory/extra-filesystem/compare/v0.3.12...v0.3.13) (2021-11-07)
8
-
9
- ### [0.3.12](https://github.com/BlackGlory/extra-filesystem/compare/v0.3.11...v0.3.12) (2021-10-24)
10
-
11
-
12
- ### Features
13
-
14
- * add checksumFile ([644eff7](https://github.com/BlackGlory/extra-filesystem/commit/644eff70e9156eff5959c86ac48f05db2ee68414))
15
-
16
- ### [0.3.11](https://github.com/BlackGlory/extra-filesystem/compare/v0.3.10...v0.3.11) (2021-10-14)
17
-
18
- ### [0.3.10](https://github.com/BlackGlory/extra-filesystem/compare/v0.3.9...v0.3.10) (2021-10-12)
19
-
20
-
21
- ### Features
22
-
23
- * add copy, copySync ([75f19cf](https://github.com/BlackGlory/extra-filesystem/commit/75f19cfef4129a9e06facb208ac8e1e1696c3c99))
24
-
25
- ### [0.3.9](https://github.com/BlackGlory/extra-filesystem/compare/v0.3.8...v0.3.9) (2021-09-25)
26
-
27
- ### [0.3.8](https://github.com/BlackGlory/extra-filesystem/compare/v0.3.7...v0.3.8) (2021-09-10)
28
-
29
-
30
- ### Features
31
-
32
- * add isSubPathOf ([635f19e](https://github.com/BlackGlory/extra-filesystem/commit/635f19e24d39c687c44fac1dd5210c2fe68340d2))
33
-
34
- ### [0.3.7](https://github.com/BlackGlory/extra-filesystem/compare/v0.3.6...v0.3.7) (2021-08-02)
35
-
36
-
37
- ### Features
38
-
39
- * `move`, `moveSync` now overwrite existing files ([5a9dbc0](https://github.com/BlackGlory/extra-filesystem/commit/5a9dbc047df27ac2e1ffef5e86fe3bb75bb2a606))
40
-
41
- ### [0.3.6](https://github.com/BlackGlory/extra-filesystem/compare/v0.3.5...v0.3.6) (2021-08-02)
42
-
43
-
44
- ### Features
45
-
46
- * use `fs-extra` to handle cross-device renaming ([ad59f70](https://github.com/BlackGlory/extra-filesystem/commit/ad59f701fc300ea0ada62b8d75de2eb61099cb09))
47
-
48
- ### [0.3.5](https://github.com/BlackGlory/extra-filesystem/compare/v0.3.4...v0.3.5) (2021-07-25)
49
-
50
- ### [0.3.4](https://github.com/BlackGlory/extra-filesystem/compare/v0.3.3...v0.3.4) (2021-07-12)
51
-
52
- ### [0.3.3](https://github.com/BlackGlory/extra-filesystem/compare/v0.3.2...v0.3.3) (2021-07-10)
53
-
54
-
55
- ### Features
56
-
57
- * add writeIterableToFile ([f7aa9de](https://github.com/BlackGlory/extra-filesystem/commit/f7aa9ded5db6092c25efafe9a2711aaf9159cb7d))
58
-
59
- ### [0.3.2](https://github.com/BlackGlory/extra-filesystem/compare/v0.3.1...v0.3.2) (2021-05-17)
60
-
61
- ### [0.3.1](https://github.com/BlackGlory/extra-filesystem/compare/v0.3.0...v0.3.1) (2021-05-16)
62
-
63
- ## [0.3.0](https://github.com/BlackGlory/extra-filesystem/compare/v0.2.20...v0.3.0) (2021-05-14)
64
-
65
-
66
- ### ⚠ BREAKING CHANGES
67
-
68
- * createTempFilename => createTempName
69
- createTempFilenameSync => createTempNameSync
70
-
71
- ### Features
72
-
73
- * add emptyDir, emptyDirSync ([f5b7280](https://github.com/BlackGlory/extra-filesystem/commit/f5b72807a0dd6822a00772f6ad9d5716713c43d0))
74
- * isFileSync, isDirectorySync ([5ea1fee](https://github.com/BlackGlory/extra-filesystem/commit/5ea1feebdb8dd49229d1df832c12b3453fbad59e))
75
- * moveSync, removeSync ([a6428d0](https://github.com/BlackGlory/extra-filesystem/commit/a6428d0686cc3b7b22b98df5deefd657b19cd989))
76
-
77
-
78
- * rename ([14950ff](https://github.com/BlackGlory/extra-filesystem/commit/14950ff33b425087252df71e2e7f2a90272926b2))
79
-
80
- ### [0.2.20](https://github.com/BlackGlory/extra-filesystem/compare/v0.2.19...v0.2.20) (2021-05-08)
81
-
82
-
83
- ### Features
84
-
85
- * enable force for remove ([f8cc119](https://github.com/BlackGlory/extra-filesystem/commit/f8cc119734d515aed9b4e2da49faa2395b198f5f))
86
-
87
- ### [0.2.19](https://github.com/BlackGlory/extra-filesystem/compare/v0.2.18...v0.2.19) (2021-05-08)
88
-
89
-
90
- ### Features
91
-
92
- * add remove ([cfcaf6e](https://github.com/BlackGlory/extra-filesystem/commit/cfcaf6e99b9fe29f49afa9a4a86822096d07c7b3))
93
-
94
- ### [0.2.18](https://github.com/BlackGlory/extra-filesystem/compare/v0.2.17...v0.2.18) (2021-05-08)
95
-
96
-
97
- ### Features
98
-
99
- * add createTempDir, createTempDirSync ([8e27fa5](https://github.com/BlackGlory/extra-filesystem/commit/8e27fa583723a80056038bbfd6fbdcbb1b228b7c))
100
-
101
- ### [0.2.17](https://github.com/BlackGlory/extra-filesystem/compare/v0.2.16...v0.2.17) (2021-05-08)
102
-
103
-
104
- ### Features
105
-
106
- * add createTempFilename, createTempFilenameSync ([91607b4](https://github.com/BlackGlory/extra-filesystem/commit/91607b45073b040ec48e4dea03d1a74aea8d57f3))
107
-
108
- ### [0.2.16](https://github.com/BlackGlory/extra-filesystem/compare/v0.2.15...v0.2.16) (2021-05-08)
109
-
110
-
111
- ### Bug Fixes
112
-
113
- * build ([90770a3](https://github.com/BlackGlory/extra-filesystem/commit/90770a36dbaf56037b7177f8b24e7010c501c7fa))
114
-
115
- ### [0.2.15](https://github.com/BlackGlory/extra-filesystem/compare/v0.2.14...v0.2.15) (2021-05-08)
116
-
117
-
118
- ### Features
119
-
120
- * add createTempFile, createTempFileSync ([40362bd](https://github.com/BlackGlory/extra-filesystem/commit/40362bd0c42351ffc0a6d39171fae8c4d638df4f))
121
-
122
- ### [0.2.14](https://github.com/BlackGlory/extra-filesystem/compare/v0.2.13...v0.2.14) (2021-05-08)
123
-
124
-
125
- ### Bug Fixes
126
-
127
- * ensureFile, ensureFileSync ([da7e95e](https://github.com/BlackGlory/extra-filesystem/commit/da7e95eaa3f5824596b4901ec0414ab984587dbb))
128
-
129
- ### [0.2.13](https://github.com/BlackGlory/extra-filesystem/compare/v0.2.12...v0.2.13) (2021-05-08)
130
-
131
-
132
- ### Features
133
-
134
- * add ensureFile, ensureFileSync ([5492a14](https://github.com/BlackGlory/extra-filesystem/commit/5492a14a53076c6a6e8dff979c5f28810ed7470f))
135
-
136
- ### [0.2.12](https://github.com/BlackGlory/extra-filesystem/compare/v0.2.11...v0.2.12) (2021-05-08)
137
-
138
-
139
- ### Features
140
-
141
- * add move ([e3871eb](https://github.com/BlackGlory/extra-filesystem/commit/e3871ebeb2e495b0ac0b0919edc9a2e5657a4b51))
142
-
143
- ### [0.2.11](https://github.com/BlackGlory/extra-filesystem/compare/v0.2.10...v0.2.11) (2021-05-08)
144
-
145
-
146
- ### Features
147
-
148
- * add ensureDirSync ([606dfc2](https://github.com/BlackGlory/extra-filesystem/commit/606dfc2291bacd33f33e76e6d4043bfd21355678))
149
-
150
- ### [0.2.10](https://github.com/BlackGlory/extra-filesystem/compare/v0.2.9...v0.2.10) (2021-05-08)
151
-
152
-
153
- ### Features
154
-
155
- * add pathExistsSync, writeJSONFile, writeJSONFileSync ([7644e50](https://github.com/BlackGlory/extra-filesystem/commit/7644e50a7b35b38d62d59ed88a7376b935dc7539))
156
-
157
- ### [0.2.9](https://github.com/BlackGlory/extra-filesystem/compare/v0.2.8...v0.2.9) (2021-05-08)
158
-
159
-
160
- ### Features
161
-
162
- * add readJSONFile ([76fadf1](https://github.com/BlackGlory/extra-filesystem/commit/76fadf118a93087e4eebfc7899cc2ebbe36adb17))
163
-
164
- ### [0.2.8](https://github.com/BlackGlory/extra-filesystem/compare/v0.2.7...v0.2.8) (2021-05-08)
165
-
166
-
167
- ### Features
168
-
169
- * add ensureDir, pathExists ([a614df9](https://github.com/BlackGlory/extra-filesystem/commit/a614df9630a289550cc37e783dc23b677b857386))
170
-
171
- ### [0.2.7](https://github.com/BlackGlory/extra-filesystem/compare/v0.2.6...v0.2.7) (2021-03-29)
172
-
173
- ### [0.2.6](https://github.com/BlackGlory/extra-filesystem/compare/v0.2.5...v0.2.6) (2021-03-29)
174
-
175
-
176
- ### Features
177
-
178
- * add readFileLineByLine ([0782f74](https://github.com/BlackGlory/extra-filesystem/commit/0782f748641e7014464eb83f4ecc5152a238ba1e))
179
-
180
- ### [0.2.5](https://github.com/BlackGlory/bundle/compare/v0.2.4...v0.2.5) (2021-02-03)
181
-
182
- ### [0.2.4](https://github.com/BlackGlory/bundle/compare/v0.2.3...v0.2.4) (2021-01-30)
183
-
184
- ### [0.2.3](https://github.com/BlackGlory/bundle/compare/v0.2.2...v0.2.3) (2021-01-29)
185
-
186
-
187
- ### Bug Fixes
188
-
189
- * predicate ([1433967](https://github.com/BlackGlory/bundle/commit/143396779dad8ac0d1767a6468c4ea2d96d1c682))
190
-
191
- ### [0.2.2](https://github.com/BlackGlory/bundle/compare/v0.2.1...v0.2.2) (2021-01-29)
192
-
193
-
194
- ### Features
195
-
196
- * add predicate support ([002f952](https://github.com/BlackGlory/bundle/commit/002f9522b60b52cd777eb60a665a8bc629f7eb04))
197
-
198
- ### [0.2.1](https://github.com/BlackGlory/bundle/compare/v0.2.0...v0.2.1) (2021-01-29)
199
-
200
-
201
- ### Features
202
-
203
- * add predicate support ([619bf20](https://github.com/BlackGlory/bundle/commit/619bf20366c0347c7c74422a6e758d4a9b0392d7))
204
-
205
- ## [0.2.0](https://github.com/BlackGlory/bundle/compare/v0.1.0...v0.2.0) (2021-01-29)
206
-
207
-
208
- ### ⚠ BREAKING CHANGES
209
-
210
- * findAllDirectoryNames => findAllDirnames
211
-
212
- ### Features
213
-
214
- * rename findAllDirectoryNames to findAllDirnames ([d9d4807](https://github.com/BlackGlory/bundle/commit/d9d48079ad52d23f8dde3cbdecb57e91490f60a2))
215
-
216
- ## 0.1.0 (2021-01-29)
217
-
218
-
219
- ### Features
220
-
221
- * init ([f113770](https://github.com/BlackGlory/bundle/commit/f113770139af49f4653d2849d26b9e2e3a72afcf))