@getdashfy/utils 0.1.0 → 0.1.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.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @getdashfy/utils
2
2
 
3
+ ## 0.1.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Fix npm publish by resolving workspace dependencies to semver ranges
8
+
3
9
  ## 0.1.0
4
10
 
5
11
  ### Initial Release
package/LICENSE CHANGED
File without changes
package/README.md CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getdashfy/utils",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Formatting and utility functions for Dashfy - numbers, currencies, bytes, dates, times, strings, platform detection, and more",
5
5
  "keywords": [
6
6
  "dashfy",
@@ -60,26 +60,26 @@
60
60
  "engines": {
61
61
  "node": ">=20.0.0"
62
62
  },
63
- "scripts": {
64
- "build": "tsup",
65
- "check:circular": "madge --circular --extensions ts src/",
66
- "clean": "rm -rf .turbo dist node_modules",
67
- "dev": "tsup --watch",
68
- "test": "vitest run",
69
- "test:coverage": "vitest run --coverage",
70
- "test:watch": "vitest",
71
- "typecheck": "tsc --noEmit"
72
- },
73
63
  "dependencies": {
74
64
  "date-fns": "^4.1.0",
75
65
  "pretty-bytes": "^7.1.0"
76
66
  },
77
67
  "devDependencies": {
78
- "@getdashfy/tsconfig": "workspace:*",
79
68
  "@types/node": "^25.0.0",
80
69
  "@vitest/coverage-v8": "^2.1.9",
81
70
  "tsup": "^8.3.5",
82
71
  "typescript": "^5.7.2",
83
- "vitest": "^2.1.8"
72
+ "vitest": "^2.1.8",
73
+ "@getdashfy/tsconfig": "0.0.0"
74
+ },
75
+ "scripts": {
76
+ "build": "tsup",
77
+ "check:circular": "madge --circular --extensions ts src/",
78
+ "clean": "rm -rf .turbo dist node_modules",
79
+ "dev": "tsup --watch",
80
+ "test": "vitest run",
81
+ "test:coverage": "vitest run --coverage",
82
+ "test:watch": "vitest",
83
+ "typecheck": "tsc --noEmit"
84
84
  }
85
- }
85
+ }