@thi.ng/csv 2.2.25 → 2.2.26
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.
- package/CHANGELOG.md +7 -7
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
- **Last updated**: 2022-
|
|
3
|
+
- **Last updated**: 2022-11-23T22:46:54Z
|
|
4
4
|
- **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
|
|
5
5
|
|
|
6
6
|
All notable changes to this project will be documented in this file.
|
|
@@ -13,11 +13,11 @@ and/or version bumps of transitive dependencies.
|
|
|
13
13
|
|
|
14
14
|
#### 🚀 Features
|
|
15
15
|
|
|
16
|
+
- add currency formatters ([52b7340](https://github.com/thi-ng/umbrella/commit/52b7340))
|
|
16
17
|
- add more cell transforms, add docs ([23646bf](https://github.com/thi-ng/umbrella/commit/23646bf))
|
|
17
18
|
- add epoch(), date(), url() transforms
|
|
18
19
|
- add formatPercent()
|
|
19
20
|
- update readme
|
|
20
|
-
- add currency formatters ([52b7340](https://github.com/thi-ng/umbrella/commit/52b7340))
|
|
21
21
|
|
|
22
22
|
## [2.1.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/csv@2.1.0) (2021-11-17)
|
|
23
23
|
|
|
@@ -42,9 +42,9 @@ and/or version bumps of transitive dependencies.
|
|
|
42
42
|
|
|
43
43
|
#### ♻️ Refactoring
|
|
44
44
|
|
|
45
|
-
- update imports in all tests/pkgs ([effd591](https://github.com/thi-ng/umbrella/commit/effd591))
|
|
46
45
|
- update imports in all pkgs ([5fa2b6f](https://github.com/thi-ng/umbrella/commit/5fa2b6f))
|
|
47
46
|
- add .js suffix for all relative imports
|
|
47
|
+
- update imports in all tests/pkgs ([effd591](https://github.com/thi-ng/umbrella/commit/effd591))
|
|
48
48
|
|
|
49
49
|
# [2.0.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/csv@2.0.0) (2021-10-12)
|
|
50
50
|
|
|
@@ -69,10 +69,10 @@ and/or version bumps of transitive dependencies.
|
|
|
69
69
|
|
|
70
70
|
#### ♻️ Refactoring
|
|
71
71
|
|
|
72
|
-
- update imports (transducers) ([4bdecc9](https://github.com/thi-ng/umbrella/commit/4bdecc9))
|
|
73
|
-
- update imports ([6b102d0](https://github.com/thi-ng/umbrella/commit/6b102d0))
|
|
74
72
|
- update all tests in _all_ pkgs ([8b582bc](https://github.com/thi-ng/umbrella/commit/8b582bc))
|
|
75
73
|
- update all to use [@thi.ng/testament](https://github.com/thi-ng/umbrella/tree/main/packages/testament)
|
|
74
|
+
- update imports ([6b102d0](https://github.com/thi-ng/umbrella/commit/6b102d0))
|
|
75
|
+
- update imports (transducers) ([4bdecc9](https://github.com/thi-ng/umbrella/commit/4bdecc9))
|
|
76
76
|
|
|
77
77
|
### [0.1.2](https://github.com/thi-ng/umbrella/tree/@thi.ng/csv@0.1.2) (2020-12-07)
|
|
78
78
|
|
|
@@ -84,6 +84,8 @@ and/or version bumps of transitive dependencies.
|
|
|
84
84
|
|
|
85
85
|
#### 🚀 Features
|
|
86
86
|
|
|
87
|
+
- import as new package ([2b07100](https://github.com/thi-ng/umbrella/commit/2b07100))
|
|
88
|
+
- add coercions, restructure ([93d79ec](https://github.com/thi-ng/umbrella/commit/93d79ec))
|
|
87
89
|
- add/update CSVOpts, cell transforms, docs ([282e85c](https://github.com/thi-ng/umbrella/commit/282e85c))
|
|
88
90
|
- allow arrays for `cols` option
|
|
89
91
|
- update initIndex(), add column autonaming fallback
|
|
@@ -91,8 +93,6 @@ and/or version bumps of transitive dependencies.
|
|
|
91
93
|
- rename CoercionFn => CellTransform
|
|
92
94
|
- add upper/lower() transforms
|
|
93
95
|
- add/update tests
|
|
94
|
-
- add coercions, restructure ([93d79ec](https://github.com/thi-ng/umbrella/commit/93d79ec))
|
|
95
|
-
- import as new package ([2b07100](https://github.com/thi-ng/umbrella/commit/2b07100))
|
|
96
96
|
|
|
97
97
|
#### 🩹 Bug fixes
|
|
98
98
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/csv",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.26",
|
|
4
4
|
"description": "Customizable, transducer-based CSV parser/object mapper and transformer",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -34,17 +34,17 @@
|
|
|
34
34
|
"test": "testament test"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@thi.ng/api": "^8.4.
|
|
38
|
-
"@thi.ng/checks": "^3.3.
|
|
39
|
-
"@thi.ng/strings": "^3.3.
|
|
40
|
-
"@thi.ng/transducers": "^8.3.
|
|
37
|
+
"@thi.ng/api": "^8.4.6",
|
|
38
|
+
"@thi.ng/checks": "^3.3.3",
|
|
39
|
+
"@thi.ng/strings": "^3.3.17",
|
|
40
|
+
"@thi.ng/transducers": "^8.3.23"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@microsoft/api-extractor": "^7.33.5",
|
|
44
|
-
"@thi.ng/testament": "^0.3.
|
|
44
|
+
"@thi.ng/testament": "^0.3.5",
|
|
45
45
|
"rimraf": "^3.0.2",
|
|
46
46
|
"tools": "^0.0.1",
|
|
47
|
-
"typedoc": "^0.23.
|
|
47
|
+
"typedoc": "^0.23.20",
|
|
48
48
|
"typescript": "^4.8.4"
|
|
49
49
|
},
|
|
50
50
|
"keywords": [
|
|
@@ -62,8 +62,8 @@
|
|
|
62
62
|
"node": ">=12.7"
|
|
63
63
|
},
|
|
64
64
|
"files": [
|
|
65
|
-
"
|
|
66
|
-
"
|
|
65
|
+
"./*.js",
|
|
66
|
+
"./*.d.ts"
|
|
67
67
|
],
|
|
68
68
|
"exports": {
|
|
69
69
|
".": {
|
|
@@ -85,5 +85,5 @@
|
|
|
85
85
|
"thi.ng": {
|
|
86
86
|
"year": 2014
|
|
87
87
|
},
|
|
88
|
-
"gitHead": "
|
|
88
|
+
"gitHead": "044ee6a3895720fc78e115032d4d831b63510929\n"
|
|
89
89
|
}
|