@visulima/fmt 1.1.6 → 1.1.8
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 +17 -0
- package/package.json +15 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,20 @@
|
|
|
1
|
+
## @visulima/fmt [1.1.8](https://github.com/visulima/visulima/compare/@visulima/fmt@1.1.7...@visulima/fmt@1.1.8) (2024-09-07)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* fixed broken chunk splitting from packem ([1aaf277](https://github.com/visulima/visulima/commit/1aaf27779292d637923c5f8a220e18606e78caa2))
|
|
6
|
+
|
|
7
|
+
## @visulima/fmt [1.1.7](https://github.com/visulima/visulima/compare/@visulima/fmt@1.1.6...@visulima/fmt@1.1.7) (2024-09-07)
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* added types support for node10 ([604583f](https://github.com/visulima/visulima/commit/604583fa3c24b950fafad45d17e7a1333040fd76))
|
|
12
|
+
|
|
13
|
+
### Miscellaneous Chores
|
|
14
|
+
|
|
15
|
+
* update dev dependencies ([0738f98](https://github.com/visulima/visulima/commit/0738f9810478bb215ce4b2571dc8874c4c503089))
|
|
16
|
+
* updated dev dependencies ([45c2a76](https://github.com/visulima/visulima/commit/45c2a76bc974ecb2c6b172c3af03373d4cc6a5ce))
|
|
17
|
+
|
|
1
18
|
## @visulima/fmt [1.1.6](https://github.com/visulima/visulima/compare/@visulima/fmt@1.1.5...@visulima/fmt@1.1.6) (2024-08-01)
|
|
2
19
|
|
|
3
20
|
### Bug Fixes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@visulima/fmt",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.8",
|
|
4
4
|
"description": "Util.format-like string formatting utility.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"anolilab",
|
|
@@ -17,9 +17,12 @@
|
|
|
17
17
|
"visulima"
|
|
18
18
|
],
|
|
19
19
|
"homepage": "https://www.visulima.com/docs/package/fmt",
|
|
20
|
+
"bugs": {
|
|
21
|
+
"url": "https://github.com/visulima/visulima/issues"
|
|
22
|
+
},
|
|
20
23
|
"repository": {
|
|
21
24
|
"type": "git",
|
|
22
|
-
"url": "https://github.com/visulima/visulima.git",
|
|
25
|
+
"url": "git+https://github.com/visulima/visulima.git",
|
|
23
26
|
"directory": "packages/fmt"
|
|
24
27
|
},
|
|
25
28
|
"funding": [
|
|
@@ -54,6 +57,13 @@
|
|
|
54
57
|
"main": "dist/index.cjs",
|
|
55
58
|
"module": "dist/index.mjs",
|
|
56
59
|
"types": "dist/index.d.ts",
|
|
60
|
+
"typesVersions": {
|
|
61
|
+
"*": {
|
|
62
|
+
"*": [
|
|
63
|
+
"./dist/index.d.ts"
|
|
64
|
+
]
|
|
65
|
+
}
|
|
66
|
+
},
|
|
57
67
|
"files": [
|
|
58
68
|
"dist/**",
|
|
59
69
|
"README.md",
|
|
@@ -65,10 +75,11 @@
|
|
|
65
75
|
"@anolilab/prettier-config": "^5.0.14",
|
|
66
76
|
"@anolilab/semantic-release-pnpm": "^1.1.3",
|
|
67
77
|
"@anolilab/semantic-release-preset": "^9.0.0",
|
|
78
|
+
"@arethetypeswrong/cli": "^0.15.4",
|
|
68
79
|
"@babel/core": "^7.25.2",
|
|
69
80
|
"@rushstack/eslint-plugin-security": "^0.8.2",
|
|
70
81
|
"@types/node": "18.19.15",
|
|
71
|
-
"@visulima/packem": "^1.0.0-alpha.
|
|
82
|
+
"@visulima/packem": "^1.0.0-alpha.95",
|
|
72
83
|
"@vitest/coverage-v8": "^2.0.5",
|
|
73
84
|
"@vitest/ui": "^2.0.5",
|
|
74
85
|
"conventional-changelog-conventionalcommits": "8.0.0",
|
|
@@ -117,6 +128,7 @@
|
|
|
117
128
|
"build:prod": "cross-env NODE_ENV=production packem build",
|
|
118
129
|
"clean": "rimraf node_modules dist .eslintcache",
|
|
119
130
|
"dev": "pnpm run build --watch",
|
|
131
|
+
"lint:attw": "attw --pack",
|
|
120
132
|
"lint:eslint": "eslint . --ext js,cjs,mjs,jsx,ts,tsx,json,yaml,yml,md,mdx --max-warnings=0 --config .eslintrc.js",
|
|
121
133
|
"lint:eslint:fix": "eslint . --ext js,cjs,mjs,jsx,ts,tsx,json,yaml,yml,md,mdx --max-warnings=0 --config .eslintrc.js --fix",
|
|
122
134
|
"lint:package-json": "publint --strict",
|