@fgv/ts-extras 2.0.1 → 2.1.1-alpha.1
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.json +20 -0
- package/CHANGELOG.md +12 -0
- package/package.json +70 -67
package/CHANGELOG.json
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@fgv/ts-extras",
|
|
3
|
+
"entries": [
|
|
4
|
+
{
|
|
5
|
+
"version": "2.2.0",
|
|
6
|
+
"tag": "@fgv/ts-extras_v2.2.0",
|
|
7
|
+
"date": "Thu, 18 Jan 2024 05:45:04 GMT",
|
|
8
|
+
"comments": {
|
|
9
|
+
"none": [
|
|
10
|
+
{
|
|
11
|
+
"comment": "refactor and cleanup"
|
|
12
|
+
},
|
|
13
|
+
{
|
|
14
|
+
"comment": "Factor extras into their own package"
|
|
15
|
+
}
|
|
16
|
+
]
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
]
|
|
20
|
+
}
|
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# Change Log - @fgv/ts-extras
|
|
2
|
+
|
|
3
|
+
This log was last generated on Thu, 18 Jan 2024 05:45:04 GMT and should not be manually modified.
|
|
4
|
+
|
|
5
|
+
## 2.2.0
|
|
6
|
+
Thu, 18 Jan 2024 05:45:04 GMT
|
|
7
|
+
|
|
8
|
+
### Updates
|
|
9
|
+
|
|
10
|
+
- refactor and cleanup
|
|
11
|
+
- Factor extras into their own package
|
|
12
|
+
|
package/package.json
CHANGED
|
@@ -1,69 +1,72 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
2
|
+
"name": "@fgv/ts-extras",
|
|
3
|
+
"version": "2.1.1-alpha.1",
|
|
4
|
+
"description": "Assorted Typescript Utilities",
|
|
5
|
+
"main": "lib/index.js",
|
|
6
|
+
"types": "dist/ts-extras.d.ts",
|
|
7
|
+
"sideEffects": false,
|
|
8
|
+
"keywords": [
|
|
9
|
+
"typescript",
|
|
10
|
+
"json"
|
|
11
|
+
],
|
|
12
|
+
"author": "Erik Fortune",
|
|
13
|
+
"license": "MIT",
|
|
14
|
+
"bugs": {
|
|
15
|
+
"url": "https://github.com/ErikFortune/fgv/issues"
|
|
16
|
+
},
|
|
17
|
+
"homepage": "https://github.com/ErikFortune/fgv/tree/main/libraries/ts-extras#ts-utils",
|
|
18
|
+
"devDependencies": {
|
|
19
|
+
"@jest/expect-utils": "^29.7.0",
|
|
20
|
+
"@microsoft/api-documenter": "^7.23.17",
|
|
21
|
+
"@microsoft/api-extractor": "^7.39.1",
|
|
22
|
+
"@types/jest": "^29.5.11",
|
|
23
|
+
"@types/luxon": "^3.4.1",
|
|
24
|
+
"@types/mustache": "^4.2.5",
|
|
25
|
+
"@types/node": "^20.11.5",
|
|
26
|
+
"@types/papaparse": "^5.3.14",
|
|
27
|
+
"@typescript-eslint/eslint-plugin": "^6.19.0",
|
|
28
|
+
"@typescript-eslint/parser": "^6.19.0",
|
|
29
|
+
"eslint": "^8.56.0",
|
|
30
|
+
"eslint-config-standard": "^17.1.0",
|
|
31
|
+
"eslint-plugin-import": "^2.29.1",
|
|
32
|
+
"eslint-plugin-node": "^11.1.0",
|
|
33
|
+
"eslint-plugin-promise": "^6.1.1",
|
|
34
|
+
"jest": "^29.7.0",
|
|
35
|
+
"jest-extended": "^4.0.2",
|
|
36
|
+
"jest-matcher-utils": "^29.7.0",
|
|
37
|
+
"rimraf": "^5.0.5",
|
|
38
|
+
"ts-jest": "^29.1.1",
|
|
39
|
+
"ts-node": "^10.9.2",
|
|
40
|
+
"typescript": "^5.3.3",
|
|
41
|
+
"eslint-plugin-n": "^16.6.2",
|
|
42
|
+
"jest-snapshot": "~29.7.0",
|
|
43
|
+
"@rushstack/heft": "~0.64.0",
|
|
44
|
+
"@rushstack/heft-node-rig": "~2.4.0",
|
|
45
|
+
"@rushstack/eslint-config": "~3.6.0",
|
|
46
|
+
"@types/heft-jest": "1.0.6",
|
|
47
|
+
"@rushstack/heft-jest-plugin": "~0.11.0",
|
|
48
|
+
"eslint-plugin-tsdoc": "~0.2.17",
|
|
49
|
+
"@fgv/ts-utils-jest": "2.1.1-alpha.1",
|
|
50
|
+
"@fgv/ts-utils": "2.1.1-alpha.1"
|
|
51
|
+
},
|
|
52
|
+
"dependencies": {
|
|
53
|
+
"luxon": "^3.4.4",
|
|
54
|
+
"mustache": "^4.2.0",
|
|
55
|
+
"papaparse": "^5.4.1"
|
|
56
|
+
},
|
|
57
|
+
"peerDependencies": {
|
|
58
|
+
"@fgv/ts-utils": "2.1.1-alpha.1"
|
|
59
|
+
},
|
|
60
|
+
"scripts": {
|
|
61
|
+
"build": "heft test --clean",
|
|
62
|
+
"clean": "heft clean",
|
|
63
|
+
"test": "heft test",
|
|
64
|
+
"build-docs": "api-documenter markdown --input-folder ./temp --output-folder docs",
|
|
65
|
+
"build-all": "rushx build; rushx build-docs",
|
|
66
|
+
"test-handles": "jest --runInBand --detectOpenHandles",
|
|
67
|
+
"clean-jest": "jest --clear-cache",
|
|
68
|
+
"coverage": "jest --coverage",
|
|
69
|
+
"lint": "eslint src --ext .ts",
|
|
70
|
+
"fixlint": "eslint src --ext .ts --fix"
|
|
71
|
+
}
|
|
69
72
|
}
|