@seedcord/utils 0.4.0-next.0 → 0.4.0
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/README.md +2 -2
- package/dist/index.cjs +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<p align="center">
|
|
2
|
-
<img src="
|
|
2
|
+
<img src="https://raw.githubusercontent.com/seedcord/seedcord/main/assets/banner.png" alt="seedcord" width="100%" />
|
|
3
3
|
</p>
|
|
4
4
|
|
|
5
5
|
---
|
|
@@ -10,4 +10,4 @@ _This repository is a work in progress._
|
|
|
10
10
|
- Till a major v1.0.0 release for seedcord, expect breaking changes in minor versions.
|
|
11
11
|
- Documentation will come soon as well!
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
If you'd like to try it out, you can check out the code in `mock`
|
package/dist/index.cjs
CHANGED
package/dist/index.mjs
CHANGED
|
@@ -507,7 +507,7 @@ function prettyDifference(numBefore, numAfter) {
|
|
|
507
507
|
//#endregion
|
|
508
508
|
//#region src/index.ts
|
|
509
509
|
/** Package version */
|
|
510
|
-
const version = "0.4.0
|
|
510
|
+
const version = "0.4.0";
|
|
511
511
|
|
|
512
512
|
//#endregion
|
|
513
513
|
export { assertNever, capitalize, currentTime, filterCirculars, formatFilePath, fyShuffle, generateAsciiTable, generateCode, hasKeys, isTsOrJsFile, keepDefined, longestStringLength, ordinal, percentage, prettify, prettyDifference, round, roundToDenomination, traverseDirectory, version };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@seedcord/utils",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.4.0
|
|
4
|
+
"version": "0.4.0",
|
|
5
5
|
"description": "Utility functions for Seedcord packages",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -31,12 +31,12 @@
|
|
|
31
31
|
"typescript": "^6.0.3"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@seedcord/types": "0.4.0
|
|
34
|
+
"@seedcord/types": "0.4.0"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"type-fest": "^5.6.0",
|
|
38
|
-
"@seedcord/eslint-config": "1.4.0
|
|
39
|
-
"@seedcord/tsconfig": "2.0.0
|
|
38
|
+
"@seedcord/eslint-config": "1.4.0",
|
|
39
|
+
"@seedcord/tsconfig": "2.0.0",
|
|
40
40
|
"@seedcord/tsdown-config": "2.0.0"
|
|
41
41
|
},
|
|
42
42
|
"publishConfig": {
|
|
@@ -55,5 +55,5 @@
|
|
|
55
55
|
"test:watch": "vitest dev",
|
|
56
56
|
"coverage": "vitest run --coverage"
|
|
57
57
|
},
|
|
58
|
-
"readme": "<p align=\"center\">\n <img src=\"
|
|
58
|
+
"readme": "<p align=\"center\">\n <img src=\"https://raw.githubusercontent.com/seedcord/seedcord/main/assets/banner.png\" alt=\"seedcord\" width=\"100%\" />\n</p>\n\n---\n\n_This repository is a work in progress._\n\n- There are no stable releases yet but changes are being made actively.\n- Till a major v1.0.0 release for seedcord, expect breaking changes in minor versions.\n- Documentation will come soon as well!\n\nIf you'd like to try it out, you can check out the code in `mock`\n"
|
|
59
59
|
}
|