@visulima/fmt 1.1.13 → 1.1.14

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 (3) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/README.md +1 -1
  3. package/package.json +2 -61
package/CHANGELOG.md CHANGED
@@ -1,3 +1,15 @@
1
+ ## @visulima/fmt [1.1.14](https://github.com/visulima/visulima/compare/@visulima/fmt@1.1.13...@visulima/fmt@1.1.14) (2025-01-25)
2
+
3
+ ### Bug Fixes
4
+
5
+ * fixed wrong node version range in package.json ([4ae2929](https://github.com/visulima/visulima/commit/4ae292984681c71a770e4d4560432f7b7c5a141a))
6
+
7
+ ### Miscellaneous Chores
8
+
9
+ * fixed typescript url ([fe65a8c](https://github.com/visulima/visulima/commit/fe65a8c0296ece7ee26474c70d065b06d4d0da89))
10
+ * updated all dev dependencies ([37fb298](https://github.com/visulima/visulima/commit/37fb298b2af7c63be64252024e54bb3af6ddabec))
11
+ * updated all dev dependencies and all dependencies in the app folder ([87f4ccb](https://github.com/visulima/visulima/commit/87f4ccbf9f7900ec5b56f3c1477bc4a0ef571bcf))
12
+
1
13
  ## @visulima/fmt [1.1.13](https://github.com/visulima/visulima/compare/@visulima/fmt@1.1.12...@visulima/fmt@1.1.13) (2025-01-12)
2
14
 
3
15
  ### Bug Fixes
package/README.md CHANGED
@@ -132,7 +132,7 @@ If you would like to help take a look at the [list of issues](https://github.com
132
132
  The visulima fmt is open-sourced software licensed under the [MIT][license-url]
133
133
 
134
134
  [typescript-image]: https://img.shields.io/badge/Typescript-294E80.svg?style=for-the-badge&logo=typescript
135
- [typescript-url]: "typescript"
135
+ [typescript-url]: https://www.typescriptlang.org/ "TypeScript" "typescript"
136
136
  [license-image]: https://img.shields.io/npm/l/@visulima/fmt?color=blueviolet&style=for-the-badge
137
137
  [license-url]: LICENSE.md "license"
138
138
  [npm-image]: https://img.shields.io/npm/v/@visulima/fmt/latest.svg?style=for-the-badge&logo=npm
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@visulima/fmt",
3
- "version": "1.1.13",
3
+ "version": "1.1.14",
4
4
  "description": "Util.format-like string formatting utility.",
5
5
  "keywords": [
6
6
  "anolilab",
@@ -70,37 +70,8 @@
70
70
  "CHANGELOG.md",
71
71
  "LICENSE.md"
72
72
  ],
73
- "devDependencies": {
74
- "@anolilab/eslint-config": "^15.0.3",
75
- "@anolilab/prettier-config": "^5.0.14",
76
- "@anolilab/semantic-release-pnpm": "^1.1.6",
77
- "@anolilab/semantic-release-preset": "^9.0.3",
78
- "@arethetypeswrong/cli": "^0.17.2",
79
- "@babel/core": "^7.26.0",
80
- "@rushstack/eslint-plugin-security": "^0.8.3",
81
- "@types/node": "18.19.15",
82
- "@visulima/packem": "1.10.7",
83
- "@vitest/coverage-v8": "^2.1.8",
84
- "@vitest/ui": "^2.1.8",
85
- "conventional-changelog-conventionalcommits": "8.0.0",
86
- "cross-env": "^7.0.3",
87
- "esbuild": "0.24.2",
88
- "eslint": "8.57.0",
89
- "eslint-plugin-deprecation": "^3.0.0",
90
- "eslint-plugin-etc": "^2.0.3",
91
- "eslint-plugin-import": "npm:eslint-plugin-i@^2.29.1",
92
- "eslint-plugin-mdx": "^3.1.5",
93
- "eslint-plugin-vitest": "^0.4.1",
94
- "eslint-plugin-vitest-globals": "^1.5.0",
95
- "prettier": "^3.4.2",
96
- "quick-format-unescaped": "^4.0.4",
97
- "rimraf": "6.0.1",
98
- "semantic-release": "24.2.1",
99
- "typescript": "5.7.3",
100
- "vitest": "^2.1.8"
101
- },
102
73
  "engines": {
103
- "node": ">=18.* <=23.*"
74
+ "node": ">=18.0.0 <=23.x"
104
75
  },
105
76
  "os": [
106
77
  "darwin",
@@ -110,35 +81,5 @@
110
81
  "publishConfig": {
111
82
  "access": "public",
112
83
  "provenance": true
113
- },
114
- "anolilab": {
115
- "eslint-config": {
116
- "plugin": {
117
- "tsdoc": false
118
- },
119
- "warn_on_unsupported_typescript_version": false,
120
- "info_on_disabling_jsx_react_rule": false,
121
- "info_on_disabling_prettier_conflict_rule": false,
122
- "info_on_disabling_jsonc_sort_keys_rule": false,
123
- "info_on_disabling_etc_no_deprecated": false
124
- }
125
- },
126
- "scripts": {
127
- "build": "cross-env NODE_ENV=development packem build",
128
- "build:prod": "cross-env NODE_ENV=production packem build",
129
- "clean": "rimraf node_modules dist .eslintcache",
130
- "dev": "pnpm run build --watch",
131
- "lint:attw": "attw --pack",
132
- "lint:eslint": "eslint . --ext js,cjs,mjs,jsx,ts,tsx,json,yaml,yml,md,mdx --max-warnings=0 --config .eslintrc.cjs",
133
- "lint:eslint:fix": "eslint . --ext js,cjs,mjs,jsx,ts,tsx,json,yaml,yml,md,mdx --max-warnings=0 --config .eslintrc.cjs --fix",
134
- "lint:package-json": "publint --strict",
135
- "lint:prettier": "prettier --config=.prettierrc.cjs --check .",
136
- "lint:prettier:fix": "prettier --config=.prettierrc.cjs --write .",
137
- "lint:types": "tsc --noEmit",
138
- "test": "vitest run",
139
- "test:bench": "vitest bench",
140
- "test:coverage": "vitest run --coverage",
141
- "test:ui": "vitest --ui --coverage.enabled=true",
142
- "test:watch": "vitest"
143
84
  }
144
85
  }