@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 CHANGED
@@ -1,5 +1,5 @@
1
1
  <p align="center">
2
- <img src="../../assets/banner.png" alt="seedcord" width="100%" />
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
- I'm planning to release the first major version by Q1 2026. But till then, if you'd like to try using it, you can check out the code in `mock`
13
+ If you'd like to try it out, you can check out the code in `mock`
package/dist/index.cjs CHANGED
@@ -536,7 +536,7 @@ function prettyDifference(numBefore, numAfter) {
536
536
  //#endregion
537
537
  //#region src/index.ts
538
538
  /** Package version */
539
- const version = "0.4.0-next.0";
539
+ const version = "0.4.0";
540
540
 
541
541
  //#endregion
542
542
  exports.assertNever = assertNever;
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-next.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-next.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-next.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-next.0",
39
- "@seedcord/tsconfig": "2.0.0-next.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=\"../../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\nI'm planning to release the first major version by Q1 2026. But till then, if you'd like to try using it, you can check out the code in `mock`\n"
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
  }